diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-03-30 08:40:21 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-03-30 08:40:21 -0400 |
| commit | 8a3882d6640553f6c1d42c0e65469e2ee1982d6d (patch) | |
| tree | f90d3aaa2bcf87e9e9ee1c359d45d5e51f8e11aa /www/js/NVR.js | |
| parent | 02d71e2b9a146c72b6aea74f436e0f909ff74e23 (diff) | |
toggle option for animation frame in modal events
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index b9c63a7c..62dd9da3 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -21,7 +21,7 @@ angular.module('zmApp.controllers') DO NOT TOUCH zmAppVersion It is changed by sync_version.sh */ - var zmAppVersion = "1.3.091"; + var zmAppVersion = "1.3.093"; var isBackground = false; var justResumed = false; @@ -215,7 +215,8 @@ angular.module('zmApp.controllers') 'pauseStreams': false, 'liveStreamBuffer': 10, 'zmNinjaCustomId':undefined, // filled in init. custom header - 'obfuscationScheme': 'lzs' // or 'aes' + 'obfuscationScheme': 'lzs', // or 'aes' + 'showAnimation': true }; @@ -1620,6 +1621,10 @@ angular.module('zmApp.controllers') loginData.obfuscationScheme = 'lzs'; } + if (typeof loginData.showAnimation == 'undefined') { + loginData.showAnimation = true; + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; loginData.enableBlog = true; |
