Don't add 'px' to strokeDashoffset CSS Properties

This is a SVG CSS Property. The standard expects values or percentages, and adding "px" to the value will break it.

http://www.w3.org/TR/SVG/painting.html#StrokeDashoffsetProperty
This commit is contained in:
Sverre Johansen
2015-03-24 17:52:02 +00:00
parent cb05e2f85b
commit c28059e39b
+2 -1
View File
@@ -34,7 +34,8 @@ var isUnitlessNumber = {
// SVG-related properties
fillOpacity: true,
strokeOpacity: true,
strokeWidth: true
strokeWidth: true,
strokeDashoffset: true
};
/**