From 6e594ab97ae1bc71d9737e49cdcb51be984731f2 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Thu, 18 Jul 2019 16:52:54 -0400 Subject: allow max FPS settings for Montage Mode (irrelevant if not using multiport) --- www/js/NVR.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'www/js/NVR.js') diff --git a/www/js/NVR.js b/www/js/NVR.js index c9991d80..41cb3118 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -124,7 +124,8 @@ angular.module('zmApp.controllers') 'eventServerInterval': '', // list of intervals for all monitors 'refreshSec': '2', // timer value for frame change in sec 'refreshSecLowBW': 8, - 'liveFPS':'', + 'singleliveFPS':'', + 'montageliveFPS':'', 'enableLogs': true, 'enableDebug': true, // if enabled with log messages with "debug" 'usePin': false, @@ -1243,9 +1244,15 @@ angular.module('zmApp.controllers') } - if (typeof loginData.liveFPS == 'undefined') { + if (typeof loginData.singleliveFPS == 'undefined') { - loginData.liveFPS = ''; + loginData.singleliveFPS = ''; + + } + + if (typeof loginData.montageliveFPS == 'undefined') { + + loginData.montageLiveFPS = ''; } -- cgit v1.2.3