adding more chrome to window cycler windows

This commit is contained in:
danm%netscape.com 1999-08-21 01:06:01 +00:00
parent ed5b9e5448
commit 9d7271d462

View File

@ -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,resizable" );
window.open( inChromeURL, "","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,resizable" );
window.open( inChromeURL, "","chrome,menubar,toolbar,location,status,resizable" );
}
}