From a8ce10bba33710d4b72922f6ee8856d4c25cdb32 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 25 Nov 2016 20:50:09 +0100 Subject: [PATCH] limit filepicker height to screen Signed-off-by: Robin Appelman --- core/js/oc-dialogs.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 3b5c1ae7199..26f06cfbb27 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -233,7 +233,7 @@ var OCdialogs = { closeOnEscape: true, // max-width of 600 width: Math.min((4/5)*$(document).width(), 600), - height: 420, + height: Math.min((4 / 5) * $(document).height(), 500), modal: modal, buttons: buttonlist, close: function() { @@ -253,10 +253,6 @@ var OCdialogs = { } else { buttonEnableDisable.prop("disabled", true); } - - if (!OC.Util.hasSVGSupport()) { - OC.Util.replaceSVG(self.$filePicker.parent()); - } }) .fail(function(status, error) { // If the method is called while navigating away @@ -835,9 +831,6 @@ var OCdialogs = { }); self.$filelist.removeClass('icon-loading'); - if (!OC.Util.hasSVGSupport()) { - OC.Util.replaceSVG(self.$filePicker.find('.dirtree')); - } }); }, /** -- 2.39.5