diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2018-09-12 13:45:27 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2018-09-12 13:45:27 -0400 |
| commit | 0eee7654d348a4b0c71e7097be3cd2d3b9ce62cd (patch) | |
| tree | bb6240c5af9c8268f77830caa4d600b72d779fb3 /www/js/DataModel.js | |
| parent | c9717171d9d8dafdc25edc06b16f8fc5aee15113 (diff) | |
persist 24hr view global collapse
Diffstat (limited to 'www/js/DataModel.js')
| -rw-r--r-- | www/js/DataModel.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/www/js/DataModel.js b/www/js/DataModel.js index fc0e01ff..78135987 100644 --- a/www/js/DataModel.js +++ b/www/js/DataModel.js @@ -182,7 +182,8 @@ angular.module('zmApp.controllers') 'loginAPISupported': false, 'montageResizeSteps': 5, 'currentServerVersion': '', - 'saveToCloud': true + 'saveToCloud': true, + 'montageReviewCollapse': true, }; @@ -1421,6 +1422,14 @@ angular.module('zmApp.controllers') } + + + if (typeof loginData.montageReviewCollapse == 'undefined') { + + loginData.montageReviewCollapse = true; + + } + loginData.canSwipeMonitors = true; loginData.forceImageModePath = false; |
