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
Animatable:animateOnce places a listener on HTMLElement transitionend event. This listener clears transition property, clears all related listeners and request the component to emit idle as a sign of an ended transformation.
The problem is that CSS transition events bubble. Therefore a transition event closer to leaf of the DOM tree will bubble, regardless of the transition property being set by Tapspace or the host app.
This can cause sudden end of animations set up with animateOnce. A quick animation of a descendant element interrupts any longer animations of its ancestors.
Solution: in animateOnce, handle only events where the target is the space element itself.
The text was updated successfully, but these errors were encountered:
Animatable:animateOnce places a listener on HTMLElement transitionend event. This listener clears transition property, clears all related listeners and request the component to emit idle as a sign of an ended transformation.
The problem is that CSS transition events bubble. Therefore a transition event closer to leaf of the DOM tree will bubble, regardless of the transition property being set by Tapspace or the host app.
This can cause sudden end of animations set up with animateOnce. A quick animation of a descendant element interrupts any longer animations of its ancestors.
Solution: in animateOnce, handle only events where the target is the space element itself.
The text was updated successfully, but these errors were encountered: