BUG324100 : Fix for Show Intro Scrrens. Set Show_Intro_Screens depending on the flag in ACCTSET.INI

This commit is contained in:
racham%netscape.com 1998-10-08 18:19:57 +00:00
parent 90bc7ab463
commit effd61570d

View File

@ -126,7 +126,7 @@ function loadData()
{
document.layers[ "Clean_Installation" ].visibility = ( ( cleanFlag == true ) ? "show" : "hide" );
document.layers[ "Profile_Configured" ].visibility = ( ( configuredFlag == true ) ? "show" : "hide" );
document.layers[ "Profile_Manager_Entrance" ].visibility = ( ( newProfileFlag == true ) ? "show" : "hide" );
document.layers[ "Profile_Manager_Entrance" ].visibility = ( ( newProfileFlag == true ) ? "show" : "hide" );
}
parent.parent.globals.loadUserInput();
@ -134,7 +134,12 @@ function loadData()
if ( document && document.layers )
document.layers[ "buttontext" ].visibility = "show";
{
document.layers[ "buttontext" ].visibility = "show";
var showIntroScreens = parent.parent.globals.document.setupPlugin.GetNameValuePair( acctSetupFile, "Mode Selection", "Show_Intro_Screens" );
document.layers[ "Intro_Screens" ].visibility = ( ( showIntroScreens == "yes" ) ? "show" : "hide" );
}
if ( parent && parent.controls && parent.controls.generateControls )
parent.controls.generateControls();