diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-12-07 16:18:29 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-12-07 16:18:29 -0500 |
| commit | 5bb274adac923461f361e683b65c7acbe42df0f9 (patch) | |
| tree | 4f4a5cea0c475600b3e2a2177d21bb18c628494a /www/js/DataModel.js | |
| parent | 9e0a713cd48e9724613d1c25d3824bed64207aa9 (diff) | |
#91 - initial support - needs formatting
Diffstat (limited to 'www/js/DataModel.js')
| -rwxr-xr-x | www/js/DataModel.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/www/js/DataModel.js b/www/js/DataModel.js index 078a2fe2..4fd3a791 100755 --- a/www/js/DataModel.js +++ b/www/js/DataModel.js @@ -164,6 +164,7 @@ angular.module('zmApp.controllers') 'hideArchived': false, 'videoPlaybackSpeed': 2, 'enableGIFMP4': false, + 'enableThumbs': true, 'enableStrictSSL': false, 'enableSlowLoading': false, 'isFullScreen': false, @@ -994,10 +995,16 @@ angular.module('zmApp.controllers') if (typeof loginData.enableGIFMP4 == 'undefined') { - loginData.enableGIFMP4 = true; + loginData.enableGIFMP4 = false; } + if (typeof loginData.enableThumbs == 'undefined') { + + loginData.enableThumbs = true; + + } + if (typeof loginData.enableSlowLoading == 'undefined') { loginData.enableSlowLoading = false; |
