From effd61570da55e649b19dc89244f1241655a7180 Mon Sep 17 00:00:00 2001 From: "racham%netscape.com" Date: Thu, 8 Oct 1998 18:19:57 +0000 Subject: [PATCH] BUG324100 : Fix for Show Intro Scrrens. Set Show_Intro_Screens depending on the flag in ACCTSET.INI --- cmd/dialup/as_html/main.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cmd/dialup/as_html/main.js b/cmd/dialup/as_html/main.js index 49d89460b1b4..534db5f286d6 100644 --- a/cmd/dialup/as_html/main.js +++ b/cmd/dialup/as_html/main.js @@ -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();