disable nganimate for some elements
If you want to enable animations for specific elements (as opposed to disabling them for specific elements) you can use the $animateProvider to configure elements with a particular class name (or regex) to animate. The code below will enable animations for elements that have the angular-animate class: var myApp = angular.module(“MyApp”, [“ngAnimate”]); myApp.config(function($animateProvider) { $animateProvider.classNameFilter(/angular-animate/); … Read more