diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2019-07-18 16:52:54 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2019-07-18 16:52:54 -0400 |
| commit | 6e594ab97ae1bc71d9737e49cdcb51be984731f2 (patch) | |
| tree | 27f7b649488713eb090fd8f9e0aef13ba59dd37d /www/js/NVR.js | |
| parent | ef082993d703c355576b9f163737adef53380a48 (diff) | |
allow max FPS settings for Montage Mode (irrelevant if not using multiport)
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 13 |
1 files changed, 10 insertions, 3 deletions
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 = ''; } |
