diff options
Diffstat (limited to 'www/js/DataModel.js')
| -rw-r--r-- | www/js/DataModel.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/www/js/DataModel.js b/www/js/DataModel.js index 3633d384..ec2686b4 100644 --- a/www/js/DataModel.js +++ b/www/js/DataModel.js @@ -75,6 +75,7 @@ angular.module('zmApp.controllers') 'packeryPositions':'', 'packerySizes':'', 'timelineModalGraphType':'all', + 'resumeDelay':300, }; @@ -451,6 +452,14 @@ angular.module('zmApp.controllers') loginData.timelineModalGraphType = 'all'; } + if (typeof loginData.resumeDelay == 'undefined') + { + zmDebug ("resumeDelay does not exist. Setting to 0"); + loginData.resumeDelay = "0"; + + } + + if (typeof loginData.montageHistoryQuality == 'undefined') { |
