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

refactor(ngView): remove previousElement bookkeeping #9355

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
10 changes: 1 addition & 9 deletions src/ngRoute/directive/ngView.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,27 +188,19 @@ function ngViewFactory( $route, $anchorScroll, $animate) {
link: function(scope, $element, attr, ctrl, $transclude) {
var currentScope,
currentElement,
previousElement,
autoScrollExp = attr.autoscroll,
onloadExp = attr.onload || '';

scope.$on('$routeChangeSuccess', update);
update();

function cleanupLastView() {
if(previousElement) {
previousElement.remove();
previousElement = null;
}
if(currentScope) {
currentScope.$destroy();
currentScope = null;
}
if(currentElement) {
$animate.leave(currentElement).then(function() {
previousElement = null;
});
previousElement = currentElement;
$animate.leave(currentElement);
currentElement = null;
}
}
Expand Down
42 changes: 0 additions & 42 deletions test/ngRoute/directive/ngViewSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -844,48 +844,6 @@ describe('ngView animations', function() {
}
});
});

it('should destroy the previous leave animation if a new one takes place', function() {
module(function($provide) {
$provide.decorator('$animate', function($delegate, $$q) {
var emptyPromise = $$q.defer().promise;
$delegate.leave = function() {
return emptyPromise;
};
return $delegate;
});
});
inject(function ($compile, $rootScope, $animate, $location) {
var item;
var $scope = $rootScope.$new();
element = $compile(html(
'<div>' +
'<div ng-view></div>' +
'</div>'
))($scope);

$scope.$apply('value = true');

$location.path('/bar');
$rootScope.$digest();

var destroyed, inner = element.children(0);
inner.on('$destroy', function() {
destroyed = true;
});

$location.path('/foo');
$rootScope.$digest();

$location.path('/bar');
$rootScope.$digest();

$location.path('/bar');
$rootScope.$digest();

expect(destroyed).toBe(true);
});
});
});


Expand Down