Ok, I just did a reread of the relevant documentation. Your anchor tag is nested inside an ng-repeat. That's not a problem, but the ngAnimation will now fire the leave on the repeat, and not on the ngInclude. That is the reason your animation does not show.
You need to inject $animate into your controller, and handle the animation/rerouting in your controller. have a look at this part of the documentation. <https://docs.angularjs.org/api/ngAnimate/service/$animate#leave> Does that help? Regards Sander -- 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/d/optout.
