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

Commit 64b3a14

Browse files
committed
fix($animate): clear class animations cache if animation is not started
Closes #12604 Closes #12603
1 parent f315efd commit 64b3a14

File tree

2 files changed

+44
-5
lines changed

2 files changed

+44
-5
lines changed

src/ngAnimate/animate.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1194,8 +1194,12 @@ angular.module('ngAnimate', ['ng'])
11941194
}
11951195

11961196
return cache.promise = runAnimationPostDigest(function(done) {
1197-
var parentNode, parentElement, elementNode = extractElementNode(element);
1197+
var cache, parentNode, parentElement, elementNode = extractElementNode(element);
1198+
var DOM_FRAGMENT = 11;
11981199
if (elementNode) {
1200+
cache = element.data(STORAGE_KEY);
1201+
element.removeData(STORAGE_KEY);
1202+
11991203
parentElement = element.parent();
12001204
parentNode = elementNode.parentNode;
12011205
}
@@ -1206,9 +1210,6 @@ angular.module('ngAnimate', ['ng'])
12061210
return;
12071211
}
12081212

1209-
var cache = element.data(STORAGE_KEY);
1210-
element.removeData(STORAGE_KEY);
1211-
12121213
var state = element.data(NG_ANIMATE_STATE) || {};
12131214
var classes = resolveElementClasses(element, cache, state.active);
12141215
return !classes

test/ngAnimate/animateSpec.js

+39-1
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,44 @@ describe("ngAnimate", function() {
543543
});
544544
});
545545

546+
it("should clear the setClass element animation cache before the next animation runs", function() {
547+
var animateSpy = jasmine.createSpy();
548+
module(function($animateProvider) {
549+
$animateProvider.register('.track-me', function() {
550+
return {
551+
addClass: animateSpy,
552+
removeClass: animateSpy,
553+
setClass: animateSpy
554+
};
555+
});
556+
});
557+
inject(function($animate, $rootScope, $sniffer, $$rAF) {
558+
var orphanChild = jqLite('<div class="track-me"></div>');
559+
element.append(orphanChild);
560+
orphanChild.remove();
561+
562+
var doneSpy = jasmine.createSpy();
563+
564+
$animate.setClass(orphanChild, 'red', 'blue').then(doneSpy);
565+
$rootScope.$digest();
566+
$animate.triggerCallbacks();
567+
568+
expect(doneSpy).toHaveBeenCalled();
569+
expect(animateSpy).not.toHaveBeenCalled();
570+
571+
var specialChild = jqLite('<div class="track-me"></div>');
572+
element.append(specialChild);
573+
574+
$animate.setClass(specialChild, 'blue', 'gold').then(doneSpy);
575+
$rootScope.$digest();
576+
$animate.triggerReflow();
577+
$animate.triggerCallbacks();
578+
579+
expect(animateSpy).toHaveBeenCalled();
580+
});
581+
});
582+
583+
546584
it("should exclusively animate the setClass animation event with native dom elements", function() {
547585
var count = 0, fallback = jasmine.createSpy('callback');
548586
module(function($animateProvider) {
@@ -4559,8 +4597,8 @@ describe("ngAnimate", function() {
45594597
});
45604598
});
45614599
inject(function($compile, $rootScope, $animate, $sniffer, $rootElement) {
4562-
45634600
$rootElement.addClass('animated');
4601+
45644602
$animate.addClass($rootElement, 'green');
45654603
$rootScope.$digest();
45664604
$animate.triggerReflow();

0 commit comments

Comments
 (0)