Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

if tabset is being destroyed, don't 'select' tabs #2596

Closed
wants to merge 1 commit into from
Closed
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
9 changes: 7 additions & 2 deletions src/tabs/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,19 @@ angular.module('ui.bootstrap.tabs', [])

ctrl.removeTab = function removeTab(tab) {
var index = tabs.indexOf(tab);
//Select a new tab if the tab to be removed is selected
if (tab.active && tabs.length > 1) {
//Select a new tab if the tab to be removed is selected and not destroying
if (tab.active && tabs.length > 1 && !destroyed) {
//If this is the last tab, select the previous tab. else, the next tab.
var newActiveIndex = index == tabs.length - 1 ? index - 1 : index + 1;
ctrl.select(tabs[newActiveIndex]);
}
tabs.splice(index, 1);
};

var destroyed;
$scope.$on('$destroy', function() {
destroyed = true;
});
}])

/**
Expand Down