summaryrefslogtreecommitdiff
path: root/www/js/MonitorCtrl.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/MonitorCtrl.js')
-rw-r--r--www/js/MonitorCtrl.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/www/js/MonitorCtrl.js b/www/js/MonitorCtrl.js
index fc0956e2..013c9e79 100644
--- a/www/js/MonitorCtrl.js
+++ b/www/js/MonitorCtrl.js
@@ -322,17 +322,22 @@ angular.module('zmApp.controllers')
$scope.ptzMoveCommand = "move"; // start with as move;
$scope.ptzStopCommand = "";
+ ZMDataModel.zmDebug ("control PTZ details are " + JSON.stringify(data));
+
if (data.control.Control.CanMoveRel == '1')
{
+
$scope.ptzMoveCommand = "moveRel";
$scope.ptzStopCommand = "moveStop";
}
// Prefer con over rel if both enabled
// I've tested con
+
if (data.control.Control.CanMoveCon == '1')
{
+
$scope.ptzMoveCommand = "moveCon";
$scope.ptzStopCommand = "moveStop";
}