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
Currently the MutationObserver reacts to changes in any attribute (f.e. the style attribute, any time LUME elements update their CSS3D transforms).
Instead, the MutationObserver should only observe changes in specified attributes (the defined "custom attributes") to avoid perf cost of the callback being called for every attribute change.
Currently the MutationObserver reacts to changes in any attribute (f.e. the
style
attribute, any time LUME elements update their CSS3D transforms).Instead, the MutationObserver should only observe changes in specified attributes (the defined "custom attributes") to avoid perf cost of the callback being called for every attribute change.
Use the
attributeFilter
option toMutationObserver.observe
.The text was updated successfully, but these errors were encountered: