fix for bug 27413 by using openDialog. r=ben

git-svn-id: svn://10.0.0.236/trunk@60941 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
matt%netscape.com
2000-02-15 22:14:01 +00:00
parent a876d9dda5
commit 60afe4dee7

View File

@@ -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' );
}