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

fix($animate): remove the ng-animate className after canceling animation #7948

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/animate.js
Original file line number Diff line number Diff line change
Expand Up @@ -958,10 +958,9 @@ angular.module('ngAnimate', ['ng'])
//cancel all animations when a structural animation takes place
for(var klass in runningAnimations) {
animationsToCancel.push(runningAnimations[klass]);
cleanup(element, klass);
}
runningAnimations = {};
totalActiveAnimations = 0;
ngAnimateState = {};
cleanup(element, true);
}
} else if(lastAnimation.event == 'setClass') {
animationsToCancel.push(lastAnimation);
Expand All @@ -984,6 +983,9 @@ angular.module('ngAnimate', ['ng'])
}
}

runningAnimations = ngAnimateState.active || {};
totalActiveAnimations = ngAnimateState.totalActive || 0;

if(runner.isClassBased && !runner.isSetClassOperation && !skipAnimation) {
skipAnimation = (animationEvent == 'addClass') == element.hasClass(className); //opposite of XOR
}
Expand Down
40 changes: 40 additions & 0 deletions test/ngAnimate/animateSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,46 @@ describe("ngAnimate", function() {
expect(child.hasClass('animation-cancelled')).toBe(true);
}));

it("should remove the .ng-animate class after the next animation is run which interrupted the last animation", function() {
var addClassDone, removeClassDone,
addClassDoneSpy = jasmine.createSpy(),
removeClassDoneSpy = jasmine.createSpy();

module(function($animateProvider) {
$animateProvider.register('.hide', function() {
return {
addClass : function(element, className, done) {
addClassDone = done;
return addClassDoneSpy;
},
removeClass : function(element, className, done) {
removeClassDone = done;
return removeClassDoneSpy;
}
};
});
});

inject(function($animate, $rootScope, $sniffer, $timeout) {
$animate.addClass(element, 'hide');

expect(element).toHaveClass('ng-animate');

$animate.triggerReflow();

$animate.removeClass(element, 'hide');
expect(addClassDoneSpy).toHaveBeenCalled();

$animate.triggerReflow();

expect(element).toHaveClass('ng-animate');

removeClassDone();
$animate.triggerCallbacks();

expect(element).not.toHaveClass('ng-animate');
});
});

it("should skip a class-based animation if the same element already has an ongoing structural animation",
inject(function($animate, $rootScope, $sniffer, $timeout) {
Expand Down