From fc333067c2fd4eadfa0e25fa92a21c126c8bce5f Mon Sep 17 00:00:00 2001 From: Steven Hammerton Date: Mon, 12 Oct 2015 17:38:04 +0100 Subject: [PATCH] Rename required var to match convention --- src/CasLogic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CasLogic.js b/src/CasLogic.js index cd25f8e067..1bcc6d5c78 100644 --- a/src/CasLogic.js +++ b/src/CasLogic.js @@ -16,10 +16,10 @@ limitations under the License. 'use strict'; -var Url = require ('url'); +var url = require ('url'); function getServiceUrl() { - var parsedUrl = Url.parse(window.location.href); + var parsedUrl = url.parse(window.location.href); return parsedUrl.protocol + "//" + parsedUrl.host + parsedUrl.pathname; }