From 8a3882d6640553f6c1d42c0e65469e2ee1982d6d Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Mon, 30 Mar 2020 08:40:21 -0400 Subject: toggle option for animation frame in modal events --- www/js/NVR.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'www/js/NVR.js') 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; -- cgit v1.2.3