diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 374377de8b6e..429796054ec9 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -185,6 +185,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { push: function(element, event, options, domOperation) { options = options || {}; options.domOperation = domOperation; + options.hasDomOpreation = !isUndefined(domOperation); return queueAnimation(element, event, options); }, diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index 43f7c64b19ca..e13a66ddc050 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -171,9 +171,16 @@ function mergeAnimationOptions(element, target, newOptions) { var toAdd = (target.addClass || '') + ' ' + (newOptions.addClass || ''); var toRemove = (target.removeClass || '') + ' ' + (newOptions.removeClass || ''); var classes = resolveElementClasses(element.attr('class'), toAdd, toRemove); + var targetDomOperation = target.hasDomOpreation ? target.domOperation : null; extend(target, newOptions); + // TODO : proper fix is to maintain all animation callback in array and call at last,but now only leave has the callback so no issue with this. + if (targetDomOperation) { + target.hasDomOpreation = true; + target.domOperation = targetDomOperation; + } + if (classes.addClass) { target.addClass = classes.addClass; } else { diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 61810a891819..d62d94756c70 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1646,5 +1646,24 @@ describe("animations", function() { expect(count).toBe(1); })); + it('Leave : should remove the element even other animation are called after leave, should not override leave callback', + inject(function($animate, $rootScope, $$rAF, $rootElement) { + + var isElementRemoved = false; + var outerContainer = jqLite('
'); + element = jqLite(''); + outerContainer.append(element); + $rootElement.append(outerContainer); + var runner = $animate.leave(element, $rootElement); + $animate.removeClass(element,'rclass'); + $rootScope.$digest(); + runner.end(); + $$rAF.flush(); + + isElementRemoved = !outerContainer[0].contains(element[0]); + + expect(isElementRemoved).toBe(true); + })); + }); });