From f690e6deb88909a7b7d7b9bec2d20bcac857d8e3 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Wed, 10 Aug 2016 15:11:05 -0400 Subject: #293 regexp tweaks Former-commit-id: a6dfc81af4846def3db110a909a80685ccb2b1d9 --- www/js/WizardCtrl.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'www/js/WizardCtrl.js') diff --git a/www/js/WizardCtrl.js b/www/js/WizardCtrl.js index 088379b8..2d166e74 100644 --- a/www/js/WizardCtrl.js +++ b/www/js/WizardCtrl.js @@ -40,8 +40,8 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$ } }) .success(function (data, status, headers) { - console.log("LOOKING FOR " + zm.loginScreenString); - console.log("DATA RECEIVED " + JSON.stringify(data)); + //console.log("LOOKING FOR " + zm.loginScreenString); + //console.log("DATA RECEIVED " + JSON.stringify(data)); if (data.indexOf(zm.loginScreenString) == -1) { $scope.wizard.loginURL = $scope.wizard.fqportal; @@ -79,7 +79,7 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$ var d = $q.defer(); $http.get($scope.wizard.apiURL + "/monitors.json") .then(function (success) { - console.log("getfirst monitor success: " + JSON.stringify(success)); + // console.log("getfirst monitor success: " + JSON.stringify(success)); if (success.data.monitors.length > 0) { var foundMid = -1; for (var i = 0; i < success.data.monitors.length; i++) { @@ -416,7 +416,7 @@ angular.module('zmApp.controllers').controller('zmApp.WizardCtrl', ['$scope', '$ var b = ""; if ($scope.wizard.useauth && $scope.wizard.usebasicauth) { b = $scope.wizard.basicuser + ":" + $scope.wizard.basicpassword + "@"; - console.log("B=" + b); + //console.log("B=" + b); } var u = c.scheme + "://" + b + c.host; if (c.port) u += ":" + c.port; -- cgit v1.2.3