From e1c4198a523ecc5d78c1838593b1e1e78762eb37 Mon Sep 17 00:00:00 2001 From: "rjc%netscape.com" Date: Sat, 29 Jul 2006 05:38:10 +0000 Subject: [PATCH] Fix bug # 75772: On Mac OS X, add support for window toolbar button which hides/shows toolbar buttons. r=ben sr=hyatt --- suite/common/tasksOverlay.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/suite/common/tasksOverlay.js b/suite/common/tasksOverlay.js index d26b0c7c78f..6e2d64af5f3 100644 --- a/suite/common/tasksOverlay.js +++ b/suite/common/tasksOverlay.js @@ -70,7 +70,8 @@ function toHistory() } gDisableHistory = true; - window.open( "chrome://communicator/content/history/history.xul", "_blank", "chrome,menubar,resizable,scrollbars" ); + window.open( "chrome://communicator/content/history/history.xul", "_blank", + "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar" ); setTimeout(enableHistory, 2000); } @@ -108,7 +109,7 @@ function toOpenWindowByType( inType, uri ) if ( topWindow ) topWindow.focus(); else - window.open(uri, "_blank", "chrome,menubar,toolbar,resizable,scrollbars"); + window.open(uri, "_blank", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar"); }