Small correction for checkin to bug 249136, accidentally had checked in |this.selectedTab| instead of |browser.selectedTab|.

This commit is contained in:
aaronleventhal%moonset.net 2007-08-22 05:03:45 +00:00
Родитель 5fc2c8742d
Коммит eadfddb278
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -968,7 +968,7 @@
// can occur when "browser.tabs.loadInBackground" is false and presshell is not ready
if (!bgLoad) {
function selectNewForegroundTab(browser, tab) {
this.selectedTab = tab;
browser.selectedTab = tab;
}
setTimeout(selectNewForegroundTab, 0, getBrowser(), tab);
}