You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CSS2Properties of css.js , the setProperty method stores updated CSS properties in the styleIndex variable, but that object is shared between multiple (all?) nodes.
So when a CSS property is dynamically updated in one node, it also changes in all other nodes.
One way to fix is is by storing all changed properties in a separate variable, see orslumen@aa0318d
The text was updated successfully, but these errors were encountered:
In CSS2Properties of css.js , the setProperty method stores updated CSS properties in the styleIndex variable, but that object is shared between multiple (all?) nodes.
So when a CSS property is dynamically updated in one node, it also changes in all other nodes.
One way to fix is is by storing all changed properties in a separate variable, see orslumen@aa0318d
The text was updated successfully, but these errors were encountered: