setnganimate.js 402 B

123456789101112
  1. angular.module('app')
  2. .directive('setNgAnimate', ['$animate', function ($animate) {
  3. return {
  4. link: function ($scope, $element, $attrs) {
  5. $scope.$watch( function() {
  6. return $scope.$eval($attrs.setNgAnimate, $scope);
  7. }, function(valnew, valold){
  8. $animate.enabled(!!valnew, $element);
  9. });
  10. }
  11. };
  12. }]);