From 6dc38f96d8a2fb54773bae2a7302348ae5c83b1c Mon Sep 17 00:00:00 2001 From: "hangas%netscape.com" Date: Thu, 16 Sep 1999 00:58:50 +0000 Subject: [PATCH] Added "_blank" to window.open as per danm's notification. --- xpfe/global/resources/content/tasksOverlay.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xpfe/global/resources/content/tasksOverlay.js b/xpfe/global/resources/content/tasksOverlay.js index c4e226877cd7..c67159d65639 100644 --- a/xpfe/global/resources/content/tasksOverlay.js +++ b/xpfe/global/resources/content/tasksOverlay.js @@ -55,7 +55,7 @@ function toOpenWindowByType( inType, uri ) if ( topWindow ) topWindow.focus(); else - window.open(uri, "", "chrome,menubar,toolbar,resizable"); + window.open(uri, "_blank", "chrome,menubar,toolbar,resizable"); } function CycleWindow( inType, inChromeURL ) @@ -75,7 +75,7 @@ function CycleWindow( inType, inChromeURL ) if ( topWindowOfType == null ) { dump( " no windows of this type so create a new one \n"); - window.open( inChromeURL, "","chrome,menubar,toolbar,location,status,resizable" ); + window.open(inChromeURL, "_blank", "chrome,menubar,toolbar,location,status,resizable"); return; } @@ -118,7 +118,7 @@ function CycleWindow( inType, inChromeURL ) else { dump("open window \n"); - window.open( inChromeURL, "","chrome,menubar,toolbar,location,status,resizable" ); + window.open( inChromeURL, "_blank","chrome,menubar,toolbar,location,status,resizable" ); } }