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

fix(ngAnimate): ensure anchored animations remove the leave element at the correct time #11851

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
8 changes: 5 additions & 3 deletions src/ngAnimate/animateCssDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,12 @@ var $$AnimateCssDriverProvider = ['$$animationProvider', function($$animationPro

// we special case the leave animation since we want to ensure that
// the element is removed as soon as the animation is over. Otherwise
// a flicker might appear or the element may not be removed at all
// a flicker might appear or the element may not be removed until all
// the other animations have completed themselves (which would then
// leave a pending element in the background).
options.event = animationDetails.event;
if (options.event === 'leave' && animationDetails.domOperation) {
options.onDone = animationDetails.domOperation;
if (options.event === 'leave') {
options.onDone = options.domOperation;
}

var animator = $animateCss(element, options);
Expand Down
4 changes: 3 additions & 1 deletion test/ngAnimate/animateCssDriverSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -908,10 +908,12 @@ describe("ngAnimate $$animateCssDriver", function() {
inject(function($rootElement, $$rAF) {

toAnimation.event = 'enter';
toAnimation.options = {};
fromAnimation.event = 'leave';
fromAnimation.options = {};

var leaveOp = function() { };
fromAnimation.domOperation = leaveOp;
fromAnimation.options.domOperation = leaveOp;

driver({
from: fromAnimation,
Expand Down