diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-05-06 18:32:52 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-05-06 18:32:52 +0200 |
commit | b1713b2f75370d6c597c2a2a16ab51431802ade2 (patch) | |
tree | 743ae6d1c0ed5c5fe4e7823833bdcdb635a13a61 /apps/files | |
parent | 6633514a980b3246bdd4c26a1b890d12306f47f8 (diff) | |
download | nextcloud-server-b1713b2f75370d6c597c2a2a16ab51431802ade2.tar.gz nextcloud-server-b1713b2f75370d6c597c2a2a16ab51431802ade2.zip |
Enable file icons & previews in "Shared ..." categories
* sharing API returns now the mimetype icon path
* file previews are now lazyloaded by default (as the doc says)
* fixes #16086
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 0181acab596..e88ea1ad5d7 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -950,7 +950,8 @@ if (fileData.isPreviewAvailable) { var iconDiv = filenameTd.find('.thumbnail'); // lazy load / newly inserted td ? - if (options.animate) { + // the typeof check ensures that the default value of animate is true + if (typeof(options.animate) === 'undefined' || !!options.animate) { this.lazyLoadPreview({ path: path + '/' + fileData.name, mime: mime, |