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
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
module.animation-enter only intercepts after the element has been added to the DOM
this is a problem when you want to animate the movement of the elements that change location after the new element insertion
module.animation-leave only intercepts before the element has been removed from the DOM
again this is a problem when you want to animate the movement of the elements change location after the new element was removed (this is less problematic since I manage to run the movement animation using $timeout in a function returned from 'leave' (but still... it's an ugly hack))
The text was updated successfully, but these errors were encountered:
Hehe I was just thinking of this solution and bam then I came across this issue.
With 1.2.0, we have beforeAddClass and beforeRemoveClass, however, I would like to do the same thing for beforeEnter, beforeMove and perhaps afterLeave. These would all be in the same place where you define an animation with module.animation(...).
module.animation-enter only intercepts after the element has been added to the DOM
this is a problem when you want to animate the movement of the elements that change location after the new element insertion
module.animation-leave only intercepts before the element has been removed from the DOM
again this is a problem when you want to animate the movement of the elements change location after the new element was removed (this is less problematic since I manage to run the movement animation using $timeout in a function returned from 'leave' (but still... it's an ugly hack))
The text was updated successfully, but these errors were encountered: