~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/coremedia/util.js

  • Committer: David Coles
  • Date: 2010-02-17 07:17:57 UTC
  • Revision ID: coles.david@gmail.com-20100217071757-hndnsk84bn85fscd
Force public mode URLs to use HTTP. This should be configurable from ivle.conf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
516
516
 */
517
517
function public_app_path(app /*,...*/)
518
518
{
519
 
    return location.protocol + "//" + public_host
 
519
    return "http://" + public_host
520
520
        + make_path(path_join.apply(null, arguments));
521
521
}
522
522