summaryrefslogtreecommitdiff
path: root/www/js/MomentCtrl.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2018-01-07 10:48:04 -0500
committerPliable Pixels <pliablepixels@gmail.com>2018-01-07 10:48:04 -0500
commit20cebebf4f3ec8390f616a19b0c90603110d49e6 (patch)
tree24a98ea2422cd170a9d69b852ee2e1a083cbc3ee /www/js/MomentCtrl.js
parent3832eafc4f7ef2e5944971f09d2e865a5e2b30f4 (diff)
removed several console logs
Diffstat (limited to 'www/js/MomentCtrl.js')
-rw-r--r--www/js/MomentCtrl.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/www/js/MomentCtrl.js b/www/js/MomentCtrl.js
index e75c3ad5..abd41d53 100644
--- a/www/js/MomentCtrl.js
+++ b/www/js/MomentCtrl.js
@@ -664,11 +664,11 @@ angular.module('zmApp.controllers').controller('zmApp.MomentCtrl', ['$scope', '$
NVRDataModel.log("Future date selected, ignoring");
return;
}
- console.log("T=" + t.format("MMM DD,YYYY HH:mm"));
+ //console.log("T=" + t.format("MMM DD,YYYY HH:mm"));
} else {
t = moment(timeTo);
t.subtract(1, "day");
- console.log("T=" + t.format("MMM DD,YYYY HH:mm"));
+ //console.log("T=" + t.format("MMM DD,YYYY HH:mm"));
}
var newTo = t.format("YYYY-MM-DD HH:mm:ss");
@@ -833,7 +833,7 @@ angular.module('zmApp.controllers').controller('zmApp.MomentCtrl', ['$scope', '$
excludeMonitors = [];
}
- console.log("RETRIEVED EXCLUDE=" + JSON.stringify(excludeMonitors));
+ //console.log("RETRIEVED EXCLUDE=" + JSON.stringify(excludeMonitors));
constructMask();
$scope.isSubMenu = ld.enableMomentSubMenu;
@@ -842,7 +842,7 @@ angular.module('zmApp.controllers').controller('zmApp.MomentCtrl', ['$scope', '$
for (var i = 0; i < monitors.length; i++) {
if (excludeMonitors.indexOf(monitors[i].Monitor.Id) != -1) {
monitors[i].Monitor.listDisplay = 'noshow';
- console.log("Marking monitor " + monitors[i].Monitor.Id + " as noshow");
+ //console.log("Marking monitor " + monitors[i].Monitor.Id + " as noshow");
}
}