From 7c1649fc2441f5fa0b21749e549a76ea26128edd Mon Sep 17 00:00:00 2001 From: tsumi Date: Fri, 10 Jan 2014 21:19:30 +0100 Subject: [PATCH 1/2] Added SVG fallback to apps settings popup This fix issue of calendar app with IE8, see issue report for details: https://github.com/owncloud/calendar/issues/291 --- core/js/js.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index f380234af0..92f2ac484e 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -416,6 +416,11 @@ var OC={ throw e; }); } + if(!SVGSupport()) { + replaceSVG(); + } else { + SVGSupport.checkMimeType(); + } }).show(); }, 'html'); } From f41255f65217ab40cbe9c1af87be361736d6af55 Mon Sep 17 00:00:00 2001 From: tsumi Date: Wed, 15 Jan 2014 09:39:21 +0100 Subject: [PATCH 2/2] Useless else removed As suggested by @PVince81 : https://github.com/owncloud/core/pull/6721#issuecomment-32289922 --- core/js/js.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 92f2ac484e..e84f482d67 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -418,8 +418,6 @@ var OC={ } if(!SVGSupport()) { replaceSVG(); - } else { - SVGSupport.checkMimeType(); } }).show(); }, 'html');