Support SSL for the Google Client Location API

This commit is contained in:
Craig Andrews 2009-11-20 15:18:09 -05:00
parent a3285faac1
commit 45919a356f
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ var AjaxGeoLocation = (function() {
if (!hasGoogleLoader() && !loading) {
loading = true;
var s = document.createElement('script');
s.src = 'http://www.google.com/jsapi?callback=_google_loader_apiLoaded';
s.src = (document.location.protocol == "https:"?"https://":"http://") + 'www.google.com/jsapi?callback=_google_loader_apiLoaded';
s.type = "text/javascript";
document.getElementsByTagName('body')[0].appendChild(s);
}