Merge pull request #16911 from oparoz/prettier-public-thumbnails
Determine the size we need before asking for a thumbnail
This commit is contained in:
commit
433db48027
|
@ -89,8 +89,8 @@ OCA.Sharing.PublicApp = {
|
|||
// dynamically load image previews
|
||||
var token = $('#sharingToken').val();
|
||||
var bottomMargin = 350;
|
||||
var previewWidth = $(window).width() * window.devicePixelRatio;
|
||||
var previewHeight = ($(window).height() - bottomMargin) * window.devicePixelRatio;
|
||||
var previewWidth = Math.floor($(window).width() * window.devicePixelRatio);
|
||||
var previewHeight = Math.floor(($(window).height() - bottomMargin) * window.devicePixelRatio);
|
||||
previewHeight = Math.max(200, previewHeight);
|
||||
var params = {
|
||||
x: previewWidth,
|
||||
|
@ -159,6 +159,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);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue