From 60afe4dee7d59e5e7c2ec71b5c3b0a850acf0564 Mon Sep 17 00:00:00 2001 From: "matt%netscape.com" Date: Tue, 15 Feb 2000 22:14:01 +0000 Subject: [PATCH] fix for bug 27413 by using openDialog. r=ben git-svn-id: svn://10.0.0.236/trunk@60941 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/global/resources/content/globalOverlay.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mozilla/xpfe/global/resources/content/globalOverlay.js b/mozilla/xpfe/global/resources/content/globalOverlay.js index 34bc00fd492..b85b6ddb02c 100644 --- a/mozilla/xpfe/global/resources/content/globalOverlay.js +++ b/mozilla/xpfe/global/resources/content/globalOverlay.js @@ -123,10 +123,8 @@ function goAboutDialog() } if( defaultAboutState ) window.openDialog("chrome:global/content/about.xul", "About", "modal,chrome,resizable=yes,height=450,width=550"); - else if( appCore ) - appCore.loadUrl( "chrome://global/content/about.html" ); - else - window.open( "chrome://global/content/about.html", "_blank" ); + else + window.openDialog( "chrome://navigator/content/navigator.xul", "_blank", "chrome,all,dialog=no", 'chrome://global/content/about.html' ); }