summaryrefslogtreecommitdiff
path: root/www/js/MontageCtrl.js
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@users.noreply.github.com>2016-08-22 10:23:36 -0400
committerGitHub <noreply@github.com>2016-08-22 10:23:36 -0400
commit71045ed744f17d645c69295fc849e5cb4ab9b866 (patch)
treeadd69263eb4e6fda7e5d345405c39596583dc96a /www/js/MontageCtrl.js
parent74e27bd51198e47d8a42157696cfc56ebb3328cb (diff)
parent25e440861a7c31877f7ad0d4992cc0de6c0dce02 (diff)
Merge pull request #307 from sctt/master
Added Wake-Sleep-Reset control commands Former-commit-id: f204c7f041fe8773ff418154f6db69743f77eeed
Diffstat (limited to 'www/js/MontageCtrl.js')
-rw-r--r--www/js/MontageCtrl.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/www/js/MontageCtrl.js b/www/js/MontageCtrl.js
index 6d93e753..c5ba05bd 100644
--- a/www/js/MontageCtrl.js
+++ b/www/js/MontageCtrl.js
@@ -664,6 +664,11 @@ function initPackery()
$scope.LoginData = ZMDataModel.getLogin();
$rootScope.modalRand = Math.floor(Math.random() * (999999 - 111111 + 1)) + 111111;
+
+ $scope.ptzWakeCommand = "";
+ $scope.ptzSleepCommand = "";
+ $scope.ptzResetCommand = "";
+
$scope.ptzMoveCommand = "";
$scope.ptzStopCommand = "";
@@ -1154,4 +1159,4 @@ $scope.$on('$ionicView.afterEnter', function () {
};
-}]); \ No newline at end of file
+}]);