themes/base: fix xhr.js for https:// access
[project/luci.git] / themes / base / htdocs / luci-static / resources / xhr.js
index 3a30e04..a146fa8 100644 (file)
@@ -43,7 +43,7 @@ XHR = function()
                var xhr  = this._xmlHttp;
                var code = this._encode( data );
 
-               url = 'http://' + location.hostname +
+               url = location.protocol + '//' + location.hostname +
                        ( location.port ? ':' + location.port : '' ) + url;
 
                if( code )