From 64e328d9534b521c2275f84b8aa9a759d60266c7 Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Fri, 30 Jul 1999 23:35:19 +0000 Subject: [PATCH] Fix Bug #10706. Restore menus to chrome urls that are opened using window.open from the task manager. r=danm --- 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 788538e9e789..607e78007048 100644 --- a/xpfe/global/resources/content/tasksOverlay.js +++ b/xpfe/global/resources/content/tasksOverlay.js @@ -40,7 +40,7 @@ function toOpenWindowByType( inType, uri ) if ( topWindow ) topWindow.focus(); else - window.open(uri, "_New", "chrome"); + window.open(uri, "_New", "chrome,menubar"); } function CycleWindow( inType, inChromeURL ) @@ -65,7 +65,7 @@ function CycleWindow( inType, inChromeURL ) if ( topWindowOfType == null ) { dump( " no windows of this type so create a new one \n"); - window.open( inChromeURL, "","chrome" ); + window.open( inChromeURL, "","chrome,menubar" ); } var enumerator = windowManagerInterface.GetEnumerator( inType ); firstWindow = windowManagerInterface.ConvertISupportsToDOMWindow ( enumerator.GetNext() ); @@ -99,7 +99,7 @@ function CycleWindow( inType, inChromeURL ) else { dump("open window \n"); - window.open( inChromeURL, "","chrome" ); + window.open( inChromeURL, "","chrome,menubar" ); } }