diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-07-15 13:58:03 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-07-15 13:58:03 +0100 |
commit | 96b252195b421a6bb1c5643dbd15a958d0317295 (patch) | |
tree | 578eb7f24a4377bf9f6856f4f5050d3398998254 | |
parent | ad6a32126686b9282aa7bb44a3555c03e5137732 (diff) | |
parent | 62fa899fd20ef1cccf8c73e39db8c683d7d0ac54 (diff) | |
download | nextcloud-server-96b252195b421a6bb1c5643dbd15a958d0317295.tar.gz nextcloud-server-96b252195b421a6bb1c5643dbd15a958d0317295.zip |
Merge pull request #17340 from owncloud/stable8-backport-16911
[stable8] Determine the size we need before asking for a thumbnail
-rw-r--r-- | apps/files_sharing/js/public.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index bec43a4fb57..c2dd6d3ed38 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -88,8 +88,8 @@ OCA.Sharing.PublicApp = { // dynamically load image previews var params = { - x: $(document).width() * window.devicePixelRatio, - y: $(document).height() * window.devicePixelRatio, + x: Math.floor($(document).width() * window.devicePixelRatio), + y: Math.floor($(document).height() * window.devicePixelRatio), a: 'true', file: encodeURIComponent(this.initialDir + $('#filename').val()), t: $('#sharingToken').val(), @@ -147,6 +147,8 @@ OCA.Sharing.PublicApp = { this.fileList.generatePreviewUrl = function (urlSpec) { urlSpec.t = $('#dirToken').val(); + urlSpec.y = Math.floor(36 * window.devicePixelRatio); + urlSpec.x = Math.floor(36 * window.devicePixelRatio); return OC.generateUrl('/apps/files_sharing/ajax/publicpreview.php?') + $.param(urlSpec); }; |