fix SVG attributes for real

This commit is contained in:
David Greenspan
2013-12-11 14:59:10 -08:00
parent 683fa46ab4
commit 989cf2ab19

View File

@@ -282,7 +282,8 @@ var parseAttrs = function (attrs) {
var outValue = (outParts.length === 0 ? '' :
(outParts.length === 1 ? outParts[0] :
outParts));
result[k] = outValue;
var properKey = HTML.properCaseAttributeName(k);
result[properKey] = outValue;
}
}