summaryrefslogtreecommitdiff
path: root/www/js/MonitorCtrl.js
diff options
context:
space:
mode:
authorroot <root@term.(none)>2016-08-22 13:40:06 +0200
committerroot <root@term.(none)>2016-08-22 13:40:06 +0200
commit25e440861a7c31877f7ad0d4992cc0de6c0dce02 (patch)
treecd7409030d86e5156544bb1c5ac61feb61aa65bb /www/js/MonitorCtrl.js
parent5afcaac8873cd91a3c760e5982b60db374608fd4 (diff)
Added Wake-Sleep-Reset control commands
Former-commit-id: 8ddfeea854f40464f43375a4f14dc11de92c4d30
Diffstat (limited to 'www/js/MonitorCtrl.js')
-rw-r--r--www/js/MonitorCtrl.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/www/js/MonitorCtrl.js b/www/js/MonitorCtrl.js
index 97110760..900084cb 100644
--- a/www/js/MonitorCtrl.js
+++ b/www/js/MonitorCtrl.js
@@ -346,6 +346,11 @@ angular.module('zmApp.controllers')
$scope.LoginData = ZMDataModel.getLogin();
$rootScope.modalRand = Math.floor(Math.random() * (999999 - 111111 + 1)) + 111111;
+
+ $scope.ptzWakeCommand = "";
+ $scope.ptzSleepCommand = "";
+ $scope.ptzResetCommand = "";
+
$scope.ptzMoveCommand = "";
$scope.ptzStopCommand = "";
@@ -493,4 +498,4 @@ angular.module('zmApp.controllers')
};
-}]); \ No newline at end of file
+}]);