From 0e4b3eba8961718c8c2b0bb1ab46018e700744c2 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Tue, 29 Apr 2003 05:49:01 +0000 Subject: [PATCH] fix for bug #203716 unable to scroll page after [left-]clicking on link in mail (existing browser window) sr=jag, a=sspitzer git-svn-id: svn://10.0.0.236/trunk@141927 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/communicator/resources/content/contentAreaUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/xpfe/communicator/resources/content/contentAreaUtils.js b/mozilla/xpfe/communicator/resources/content/contentAreaUtils.js index 9b0ba1a7e29..7510a39249d 100644 --- a/mozilla/xpfe/communicator/resources/content/contentAreaUtils.js +++ b/mozilla/xpfe/communicator/resources/content/contentAreaUtils.js @@ -110,7 +110,7 @@ function openTopBrowserWith(url) // if there's an existing browser window, open this url in one if (browserWin) { browserWin.getBrowser().loadURI(url); // Just do a normal load. - browserWin.focus(); + browserWin.content.focus(); } else window.openDialog(getBrowserURL(), "_blank", "chrome,all,dialog=no", url, null, null);