diff options
author | tsumi <mail@tsumi.it> | 2014-01-10 21:19:30 +0100 |
---|---|---|
committer | tsumi <mail@tsumi.it> | 2014-01-10 21:19:30 +0100 |
commit | 7c1649fc2441f5fa0b21749e549a76ea26128edd (patch) | |
tree | 9cffdd8e92ea55f7c87a8b5145f5343e9a46444f /core/js | |
parent | b24c21b00f0116e8749f37646cc25f798992bf05 (diff) | |
download | nextcloud-server-7c1649fc2441f5fa0b21749e549a76ea26128edd.tar.gz nextcloud-server-7c1649fc2441f5fa0b21749e549a76ea26128edd.zip |
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
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/js.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/js/js.js b/core/js/js.js index f380234af05..92f2ac484e4 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'); } |