summaryrefslogtreecommitdiff
path: root/www/js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js')
-rw-r--r--www/js/MonitorCtrl.js4
-rw-r--r--www/js/app.js1
2 files changed, 2 insertions, 3 deletions
diff --git a/www/js/MonitorCtrl.js b/www/js/MonitorCtrl.js
index 2ae91b69..ee9605fc 100644
--- a/www/js/MonitorCtrl.js
+++ b/www/js/MonitorCtrl.js
@@ -285,8 +285,8 @@ angular.module('zmApp.controllers').controller('zmApp.MonitorCtrl', ['$ionicPopu
// The status is provided by zmdc.pl
// "not running", "pending", "running since", "Unable to connect"
-
- for (var i = 0; i < $scope.monitors.length; i++) {
+ var i;
+ for ( i = 0; i < $scope.monitors.length; i++) {
(function (j) {
$scope.monitors[j].Monitor.isRunningText = "...";
$scope.monitors[j].Monitor.isRunning = "...";
diff --git a/www/js/app.js b/www/js/app.js
index 4c157eda..ffff0c68 100644
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -7,7 +7,6 @@
angular.module('zmApp', [
'ionic',
'zmApp.controllers',
- //'cordovaHTTP'
])
//------------------------------------------------------------------