https fix v.004

This commit is contained in:
Trevor Squillario 2011-08-17 18:30:55 -04:00
parent b2808332ca
commit 4ddf7e6038
5 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,6 @@
// Global Variables
var hostURL = location.href;
var baseURL = 'http://' + location.host + '/rest';
var baseURL = location.protocol + '//' + location.host + '/rest';
var username = $.cookie('username');
var password = $.cookie('password');
var auth = makeBaseAuth(username, password);