We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb98c95 commit 9815c79Copy full SHA for 9815c79
src/ReactART.js
@@ -467,13 +467,17 @@ var RenderableMixin = merge(NodeMixin, {
467
oldProps.stroke !== props.stroke ||
468
oldProps.strokeWidth !== props.strokeWidth ||
469
oldProps.strokeCap !== props.strokeCap ||
470
- oldProps.strokeJoin !== props.strokeJoin
+ oldProps.strokeJoin !== props.strokeJoin ||
471
+ // TODO: Consider a deep check of stokeDash.
472
+ // This may benefit the VML version in IE.
473
+ oldProps.strokeDash !== props.strokeDash
474
) {
475
this.node.stroke(
476
props.stroke,
477
props.strokeWidth,
478
props.strokeCap,
- props.strokeJoin
479
+ props.strokeJoin,
480
+ props.strokeDash
481
);
482
}
483
this.applyNodeProps(oldProps, props);
0 commit comments