From 9de3bb6f59cdcf88569d76a6f8264cbc088e323d Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 3 Mar 2012 13:52:10 +0000 Subject: [PATCH] Fixed problem with SVG images identified by file extension --- js/ImageParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ImageParser.js b/js/ImageParser.js index d23d147ab..0cecd4055 100644 --- a/js/ImageParser.js +++ b/js/ImageParser.js @@ -21,7 +21,7 @@ var ImageParser = function(options) { ImageParser.prototype.parse = function(type,text) { var src; if(type === "image/svg+xml" || type === ".svg") { - src = "data:" + type + "," + encodeURIComponent(text); + src = "data:image/svg+xml," + encodeURIComponent(text); } else { src = "data:" + type + ";base64," + text; }