mirror of https://github.com/vector-im/riot-web
Rename required var to match convention
parent
4e0d930014
commit
fc333067c2
|
@ -16,10 +16,10 @@ limitations under the License.
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var Url = require ('url');
|
var url = require ('url');
|
||||||
|
|
||||||
function getServiceUrl() {
|
function getServiceUrl() {
|
||||||
var parsedUrl = Url.parse(window.location.href);
|
var parsedUrl = url.parse(window.location.href);
|
||||||
return parsedUrl.protocol + "//" + parsedUrl.host + parsedUrl.pathname;
|
return parsedUrl.protocol + "//" + parsedUrl.host + parsedUrl.pathname;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue