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
This commit is contained in:
tsumi 2014-01-10 21:19:30 +01:00
parent b24c21b00f
commit 7c1649fc24
1 changed files with 5 additions and 0 deletions

View File

@ -416,6 +416,11 @@ var OC={
throw e;
});
}
if(!SVGSupport()) {
replaceSVG();
} else {
SVGSupport.checkMimeType();
}
}).show();
}, 'html');
}