polymer: Array mutation methods cause IE to crash
Working on a component that data binds to an array of complex objects. The initial rendering is fine; however, when the data changes, using the mutation methods to modify the property will cause IE to crash.
this.splice("shapedData.groupedData", 0, this.shapedData.groupedData.length);
for (var x: number = 0; x < newdata.length; ++x) { this.push(“shapedData.groupedData”, newdata[x]); }
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 25 (10 by maintainers)
So besides a
strip-whitespaceworkaround is there any actual fix for this year old issue? I use splice a lot and need to support IE 11.Still seeing the issue on Polymer 1.5.0.