diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 610b437e5b79..3f3f96d102d8 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -777,6 +777,8 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { cancel: cancelFn }); + // should flush the cache animation + waitUntilQuiet(noop); close(); return { diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 262351a3ff34..c90bdfc22c8f 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1277,6 +1277,25 @@ describe("ngAnimate $animateCss", function() { expect(element.attr('style')).not.toContain('transition'); })); + it("should clear cache if no animation so follow-up animation on the same element will not be from cache", + inject(function($animateCss, $rootElement, $$body, $$rAF) { + var element = jqLite('
'); + var options = { + event: 'enter', + structural: true + }; + $rootElement.append(element); + $$body.append($rootElement); + var animator = $animateCss(element, options); + expect(animator.$$willAnimate).toBeFalsy(); + + $$rAF.flush(); + ss.addRule('.ng-enter', '-webkit-animation:3.5s keyframe_animation;' + + 'animation:3.5s keyframe_animation;'); + animator = $animateCss(element, options); + expect(animator.$$willAnimate).toBeTruthy(); + })); + it('should apply a custom temporary class when a non-structural animation is used', inject(function($animateCss, $rootElement, $$body) {