diff options
| -rw-r--r-- | www/js/EventCtrl.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index 409ecae6..b152925d 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -137,7 +137,7 @@ angular.module('zmApp.controllers') var tempMonHeight = 0; monitorHeight = 0; for (var i=0; i < $scope.monitors.length; i++) { - if ($scope.monitors[i] != undefined && $scope.monitors[i].Monitor.isChecked) { + if ($scope.monitors[i] != undefined) { var mw = $scope.monitors[i].Monitor.Width; var mh = $scope.monitors[i].Monitor.Height; var mo = $scope.monitors[i].Monitor.Orientation; @@ -163,6 +163,7 @@ angular.module('zmApp.controllers') } } eventRowHeight = rowHeight; + console.log ('*************************'+eventRowHeight); } //we come here is TZ is updated after the view loads |
