diff options
Diffstat (limited to 'www/js/MontageHistoryCtrl.js')
| -rw-r--r-- | www/js/MontageHistoryCtrl.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/js/MontageHistoryCtrl.js b/www/js/MontageHistoryCtrl.js index 0c8bf2a0..8f0a0fb7 100644 --- a/www/js/MontageHistoryCtrl.js +++ b/www/js/MontageHistoryCtrl.js @@ -777,6 +777,19 @@ angular.module('zmApp.controllers').controller('zmApp.MontageHistoryCtrl', ['$sc //NVR.isBackground()); return NVR.isBackground(); }; + + $scope.skipImage = function (m, dirn) { + + NVR.debug ("skipping image in direction:"+dirn); + var cmd = (dirn == -1)?12:13; + sendCmd(m.Monitor.Id, cmd); + //var CMD_PREV = 12; + //var CMD_NEXT = 13; + + + + + } $scope.toggleControls = function () { $scope.showControls = !$scope.showControls; }; |
