This commit is contained in:
hyatt%netscape.com 2007-08-22 04:58:52 +00:00
Родитель d93d9f75ee
Коммит 2fca354d14
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -774,12 +774,15 @@
// Now select the new tab before nuking the old one.
var currentIndex = this.mPanelContainer.selectedIndex;
// Now select the new tab before nuking the old one.
var currentIndex = this.mPanelContainer.selectedIndex;
var newIndex = -1;
if (currentIndex > index)
newIndex = currentIndex-1;
else if (currentIndex < index)
newIndex = currentIndex;
else if (index > 0)
else if (index == l - 1)
newIndex = index-1;
else
newIndex = index;