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.
Upon upgrading from AngularJS 1.3 to 1.5, I think I have encountered a bug in ngAnimate.
When:
$animateProvider.classNameFilter is used to filter the elements that are to be animated,
the element has a ng-show that is set to false initially
Upon load of the element, the ng-hide animation is played.
In 1.3 the ng-hide animation did not play and if I remove the call to $animateProvider.classNameFilter the animation does not play, so I do not expect the animation to play in the case above. Instead I expect the element to be hidden upon load.
Click on "Toggle Container Visibility" and observe that a sliding animation is played. Next, comment out $animateProvider.classNameFilter(/animate-/); in script.js and observe that the animation does not play.