Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotwall72 committed Oct 12, 2024
1 parent e20cc59 commit 1bc707f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const layerButtons = document.getElementsByClassName("layer_button"),
// hiding these screens initially for cleaner page startup
loadingScreen.style.display = "none";
musicScreen.style.display = "none";
selectionScreen.style.display = "none";
homeScreen.style.display = "none";

// also setting carousel visibility
modCarousel.style.display = "none";
Expand Down Expand Up @@ -165,7 +165,9 @@ function runProgram() {
// only showing the home screen until the user is ready to move on
hideScreen(loadingScreen);
hideScreen(musicScreen);

hideScreen(homeScreen);
showScreen(selectionScreen);
/*
if (!programStarted) {
hideScreen(selectionScreen);
showScreen(homeScreen);
Expand All @@ -175,6 +177,7 @@ function runProgram() {
hideScreen(homeScreen);
showScreen(selectionScreen);
}
*/

// setting the page name
document.title = "Threatmixer - Selection Screen";
Expand Down

0 comments on commit 1bc707f

Please sign in to comment.