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 was archived by the owner on Apr 12, 2024. It is now read-only.
I have a fairly simple image gallery with filters above that are updating the ngRepeat's model upon changing the filter criteria. Whenever the model changes, the repeater updates, new elements are added, and the other elements are removed.
Problem is, ngAnimate (being used in another area of the page), is automatically adding enter/leave animations to my repeater's elements, even though I haven't declared any classes on those elements, like .ng-enter and .ng-leave.
I do have transitions specified on those elements, but I'm using those for sliding the gallery using transforms.
Is there any explicit way to prevent ngAnimate from affecting certain elements?