diff options
Diffstat (limited to 'www/js/DataModel.js')
| -rwxr-xr-x | www/js/DataModel.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/www/js/DataModel.js b/www/js/DataModel.js index 1c74255b..a748bc2d 100755 --- a/www/js/DataModel.js +++ b/www/js/DataModel.js @@ -172,6 +172,7 @@ angular.module('zmApp.controllers') 'momentGridSize': 40, 'momentMonitorFilter': [], 'enableMomentSubMenu': true, + 'momentArrangeBy': 'StartTime', }; @@ -1039,6 +1040,13 @@ angular.module('zmApp.controllers') loginData.momentMonitorFilter = JSON.stringify([]); } + + + if (typeof loginData.momentArrangeBy == 'undefined') { + + loginData.momentArrangeBy = "StartTime"; + + } |
