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

fix($animateCss): do not throw errors when a closing timeout is fired on a removed element #12651

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
12 changes: 9 additions & 3 deletions src/ngAnimate/animateCss.js
Original file line number Diff line number Diff line change
Expand Up @@ -894,10 +894,16 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {

function onAnimationExpired() {
var animationsData = element.data(ANIMATE_TIMER_KEY);
for (var i = 1; i < animationsData.length; i++) {
animationsData[i]();

// this will be false in the event that the element was
// removed from the DOM (via a leave animation or something
// similar)
if (animationsData) {
for (var i = 1; i < animationsData.length; i++) {
animationsData[i]();
}
element.removeData(ANIMATE_TIMER_KEY);
}
element.removeData(ANIMATE_TIMER_KEY);
}

function onAnimationProgress(event) {
Expand Down
18 changes: 18 additions & 0 deletions test/ngAnimate/animateCssSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1198,6 +1198,24 @@ describe("ngAnimate $animateCss", function() {
return animator;
}
}));

it("should not throw an error any pending timeout requests resolve after the element has already been removed",
inject(function($animateCss, $$body, $rootElement, $timeout, $animate) {

var element = jqLite('<div></div>');
$rootElement.append(element);
$$body.append($rootElement);

ss.addRule('.red', 'transition:1s linear all;');

$animateCss(element, { addClass: 'red' }).start();
triggerAnimationStartFrame();
element.remove();

expect(function() {
$timeout.flush();
}).not.toThrow();
}));
});

describe("getComputedStyle", function() {
Expand Down