From 1444c1d3456b1f9b7179d1be2c7496a84bbc8fdd Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 17 Aug 2016 14:45:08 +0200 Subject: [PATCH] Introduce weird hack for Firefox * everything is 4 times as big (doubled width and doubled height) --- settings/js/apps.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/settings/js/apps.js b/settings/js/apps.js index 9a68ebf90ac..5a94a783812 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -234,6 +234,11 @@ OC.Settings.Apps = OC.Settings.Apps || { imageUrl : function (url, appfromstore) { var img = ''; + // weird hack because in Firefox everything is 4 times as big (doubled in width and doubled in height) + // TODO: replace this with a proper solution + if($.browser.mozilla) { + img = ''; + } if (appfromstore) { img += ''; } else {