diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-02-25 11:06:48 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-02-25 11:06:48 -0500 |
| commit | e75a44b427c0f0774cb85227d01a6cb20fb8fa0c (patch) | |
| tree | 7ed66d8b7a616935adc28e124e18242216555b1a /www/js/NVR.js | |
| parent | 0512c055bb12e478d6d621f7ece71999bbf6e0d8 (diff) | |
#779 add options in dev to disable
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index 481d8512..82b7ac66 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -191,6 +191,7 @@ angular.module('zmApp.controllers') 'saveToCloud': true, 'montageReviewCollapse': true, 'objectDetectionFilter': false, + 'enableEventRefresh': true, }; @@ -1507,6 +1508,12 @@ angular.module('zmApp.controllers') } + if (typeof loginData.enableEventRefresh == 'undefined') { + + loginData.enableEventRefresh = true; + + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; |
