diff options
| author | Arjun Roychowdhury <pliablepixels@gmail.com> | 2015-11-17 14:05:43 -0500 |
|---|---|---|
| committer | Arjun Roychowdhury <pliablepixels@gmail.com> | 2015-11-17 14:05:43 -0500 |
| commit | b59f8ecd6492f73bab4559e448379e8d3fc47311 (patch) | |
| tree | b8d9c29db7428311aae943f349717f7441e9eb29 /www/js/EventCtrl.js | |
| parent | ced7ea1ef0d12c050abd8d88ce39fa2fc4a1d84d (diff) | |
#89 - toggle between all events and only events with alarm frames
Former-commit-id: 83843aa769b04811442b1e7dbf910cdb7b475279
Diffstat (limited to 'www/js/EventCtrl.js')
| -rw-r--r-- | www/js/EventCtrl.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index c63fac37..7ebc764b 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -23,6 +23,8 @@ angular.module('zmApp.controllers') $scope.days = []; $scope.weeks = []; $scope.months = []; + + $scope.minAlarmCount = "1"; $scope.eventList = { showDelete: false @@ -1382,6 +1384,11 @@ angular.module('zmApp.controllers') loadMore(); }; + + $scope.toggleMinAlarmFrameCount = function () { + console.log ("Toggling"); + $scope.minAlarmCount = ($scope.minAlarmCount == '0') ? '1':'0'; + }; //-------------------------------------- |
