Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Fix($animateCss): should clear cache if element has no animation. #12381

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ngAnimate/animateCss.js
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,8 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
cancel: cancelFn
});

// should flush the cache animation
waitUntilQuiet(noop);
close();

return {
Expand Down
19 changes: 19 additions & 0 deletions test/ngAnimate/animateCssSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('<div class="rclass"></div>');
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) {

Expand Down