diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-11-03 09:51:31 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-11-03 09:51:31 -0500 |
| commit | c90e4b23945ce93fd518c1595aa3d9275743f788 (patch) | |
| tree | b3b1291804dc778dbb7dba65683477409e30f7c6 /www/js/NVR.js | |
| parent | d483833c392f75454bd56eb7e6d2adf4a79be280 (diff) | |
add option to pause streams for simul, turn it off for default
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 0d1a9bd2..fed774f4 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -207,7 +207,8 @@ angular.module('zmApp.controllers') 'refreshToken': '', 'isKiosk': false, 'kioskPassword': '', - 'useHTTPCaching': true + 'useHTTPCaching': true, + 'pauseStreams': false, }; @@ -1590,6 +1591,11 @@ angular.module('zmApp.controllers') } + if (typeof loginData.pauseStreams == 'undefined') { + loginData.pauseStreams = false; + + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; loginData.enableBlog = true; |
