From 7c1649fc2441f5fa0b21749e549a76ea26128edd Mon Sep 17 00:00:00 2001 From: tsumi Date: Fri, 10 Jan 2014 21:19:30 +0100 Subject: [PATCH] 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'); }