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 2005-08-06 14:13:38 +00:00
parent 8260a85fe6
commit 66126c0664

View File

@ -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);
}