diff options
-rw-r--r-- | core/js/oc-dialogs.js | 9 |
1 files changed, 1 insertions, 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')); - } }); }, /** |