diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-29 11:45:23 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-05-29 11:45:23 -0400 |
| commit | 2e44ed65be3ad42190af1e590a30ac2866ef65c4 (patch) | |
| tree | e833d7214a9183412be90c38fd12cf94b55510eb /www/js/TimelineCtrl.js | |
| parent | 2f59a4e6ade708f320bb2212c11e6ff2d4259eec (diff) | |
add ability to filter events by monitor
Diffstat (limited to 'www/js/TimelineCtrl.js')
| -rw-r--r-- | www/js/TimelineCtrl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/TimelineCtrl.js b/www/js/TimelineCtrl.js index d2cc82ea..ed240a9f 100644 --- a/www/js/TimelineCtrl.js +++ b/www/js/TimelineCtrl.js @@ -1138,7 +1138,7 @@ angular.module('zmApp.controllers').controller('zmApp.TimelineCtrl', ['$ionicPla // I am waiting for the full data to load before I draw var promises = []; while ((pages <= epData.pageCount) && (iterCount > 0)) { - var promise = NVR.getEvents(0, pages, "none", fromDateNoLang, toDateNoLang, true); + var promise = NVR.getEvents(0, pages, "none", fromDateNoLang, toDateNoLang, true, $rootScope.monitorsFilter); promises.push(promise); pages++; |
