When a parent animation is in place, child animations do not get triggered.
http://plnkr.co/edit/xfkdATzHhb5uwmXvLf5y?p=preview In angular-animate.js line no 567 ``` //skip the animation if animations are disabled, a parent is already being animated, //the element is not currently attached to the document body or then completely close //the animation if any matching animations are not found at all. //NOTE: IE8 + IE9 should close properly (run closeAnimation()) in case a NO animation is not found. if (animationsDisabled(element, parentElement) || matches.length === 0) { domOperation(); closeAnimation(); return; } ``` Does the above means that the child animations would be ignored if parent has a ng-animate tag? Pardon my ignorance if this is not an issue and works as expected. Any workarounds would be helpful. This issue is already raised in stackoverflow(http://stackoverflow.com/questions/19492306/angularjs-1-2-nganimate-parent-vs-child) -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/groups/opt_out.
