diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-04-12 08:27:06 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-04-12 08:27:06 -0400 |
| commit | 50ee781e9c01def669fb7a38d145d544b50c37ad (patch) | |
| tree | 3a55d2cba864c04484ed5fd117d709e43afa915d /www/js/NVR.js | |
| parent | 5013b49627222ee32aaa64e522680d92dd8bfd8a (diff) | |
#806 allow viewing events for caught up montage, auto expand sidebar option on load
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index a2e518ba..0153bd79 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -193,7 +193,8 @@ angular.module('zmApp.controllers') 'objectDetectionFilter': false, 'enableEventRefresh': true, 'lastEventCheckTimes':{}, - 'enableMontageOverlays': true + 'enableMontageOverlays': true, + 'showMontageSidebars': false @@ -1051,6 +1052,11 @@ angular.module('zmApp.controllers') } + if (typeof loginData.showMontageSidebars == 'undefined') { + loginData.showMontageSidebars = false; + + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; loginData.enableBlog = true; |
