Skip to content

Commit

Permalink
handle untab
Browse files Browse the repository at this point in the history
  • Loading branch information
Concedo authored and Concedo committed Sep 6, 2024
1 parent 21dec7b commit 553f477
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10318,11 +10318,13 @@
function show_welcome_panel()
{
document.getElementById("welcomecontainer").classList.remove('hidden');
mainmenu_untab(true);
select_welcome_ui();
}

function close_welcome_panel(isok)
{
mainmenu_untab(false);
if(isok)
{
const selected = document.querySelector('input[name="welcometheme"]:checked');
Expand Down Expand Up @@ -19011,15 +19013,15 @@
<div class="welcome-theme-selector">
<div class="welcome-theme-option">
<label><div class="welcome-theme-image welcomeimg1"></div>
<input onchange="select_welcome_ui()" type="radio" name="welcometheme" value="0" checked="true"> Classic </label>
<input onchange="select_welcome_ui()" type="radio" title="Classic UI Theme" name="welcometheme" value="0" checked="true"> Classic UI </label>
</div>
<div class="welcome-theme-option">
<label><div class="welcome-theme-image welcomeimg2"></div>
<input onchange="select_welcome_ui()" type="radio" name="welcometheme" value="2"> Aesthetic </label>
<input onchange="select_welcome_ui()" type="radio" title="Aesthetic UI Theme" name="welcometheme" value="2"> Aesthetic UI </label>
</div>
<div class="welcome-theme-option">
<label><div class="welcome-theme-image welcomeimg3"></div>
<input onchange="select_welcome_ui()" type="radio" name="welcometheme" value="3"> Corpo </label>
<input onchange="select_welcome_ui()" type="radio" title="Corpo UI Theme" name="welcometheme" value="3"> Corpo UI </label>
</div>
</div>

Expand All @@ -19029,7 +19031,7 @@
</div>
</div>
<div class="popupfooter">
<button type="button" class="btn btn-primary" onclick="close_welcome_panel(true)">Ok</button>
<button type="button" class="btn btn-primary" onclick="close_welcome_panel(true)">Set UI</button>
<button type="button" class="btn btn-primary" onclick="close_welcome_panel()">Cancel</button>
</div>
</div>
Expand Down

0 comments on commit 553f477

Please sign in to comment.