Fix mime type

master
Nick Dima 2014-11-15 14:25:27 +01:00
parent 09a09e8010
commit 8ebe854151
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ function applyToTag(styleElement, obj) {
if(sourceMap && typeof btoa === "function") {
try {
css += "\n/*# sourceMappingURL=data:application/json;base64," + btoa(JSON.stringify(sourceMap)) + " */";
css = "@import url(\"data:stylesheet/css;base64," + btoa(css) + "\")";
css = "@import url(\"data:text/css;base64," + btoa(css) + "\")";
} catch(e) {}
}