style parsing fix

code style should be ok this time
This commit is contained in:
asturur 2014-06-22 20:51:04 +02:00
parent facdec1225
commit 049259cc09

View file

@ -354,7 +354,9 @@
if (ruleMatchesElement) {
for (var property in fabric.cssRules[rule]) {
styles[property] = fabric.cssRules[rule][property];
var attr = normalizeAttr(property);
var value = normalizeValue(attr, fabric.cssRules[rule][property]);
styles[attr] = value;
}
}
}