diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-09 19:37:11 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-12-09 19:37:11 -0500 |
| commit | 6ef705d8defed1d93a321f5d4189e81cadd36bbc (patch) | |
| tree | ad39f59e81978785810cebab003099b47f877d01 | |
| parent | 181f412de32163481a9a88b9d1acf8a6d56b3e4e (diff) | |
bug fix - pin took two taps to activate #409
| -rw-r--r-- | www/js/MontageCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/MontageCtrl.js b/www/js/MontageCtrl.js index 0f40c3b4..29449ddc 100644 --- a/www/js/MontageCtrl.js +++ b/www/js/MontageCtrl.js @@ -795,7 +795,7 @@ angular.module('zmApp.controllers') var i; $scope.isDragabillyOn = !$scope.isDragabillyOn; - for (var i = 0; i < $scope.MontageMonitors.length; i++) + for ( i = 0; i < $scope.MontageMonitors.length; i++) { $scope.MontageMonitors[i].Monitor.isStamp = false; } |
