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

git-svn-id: svn://10.0.0.236/trunk@177267 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
aaronleventhal%moonset.net 2005-08-06 14:13:38 +00:00
parent 48e3abcec3
commit 9e4bdcc31e

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