diff options
Diffstat (limited to 'www/js/DataModel.js')
| -rw-r--r-- | www/js/DataModel.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/www/js/DataModel.js b/www/js/DataModel.js index 83982c1c..dcd6b768 100644 --- a/www/js/DataModel.js +++ b/www/js/DataModel.js @@ -40,10 +40,14 @@ angular.module('zmApp.controllers') text: 'Portugese', value: 'pt' }, + /*{ + text: 'Arabic', + value: 'ar' + }, { text: 'Hindi', value: 'hi' - } + }*/ ]; var serverGroupList = {}; @@ -114,6 +118,7 @@ angular.module('zmApp.controllers') 'cycleMonitorsInterval':10, // 10sec 'enableLowBandwidth':false, 'autoSwitchBandwidth':false, + 'disableAlarmCheckMontage': false, @@ -759,6 +764,12 @@ angular.module('zmApp.controllers') } + if (typeof loginData.disableAlarmCheckMontage == 'undefined') { + + loginData.disableAlarmCheckMontage = false; + + } + |
