Skip to content

Commit

Permalink
Indicate measure 1 as active in initial app states
Browse files Browse the repository at this point in the history
  • Loading branch information
yrammos committed Sep 13, 2024
1 parent f551e05 commit 6c5f6b4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/js/LT.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ class GameMain {
this.randomSong();
this.loadSong();
this.formPlayfield();
this.gameModel.allSlots[0].classList.add('playing');
}

// creates the playfield for the player to interact with
Expand Down Expand Up @@ -281,6 +282,7 @@ class GameMain {
this.updatePlayfield();
this.resetSong();
this.updateNowPlaying();
this.gameModel.allSlots[0].classList.add('playing');
}

// general reloading of song
Expand All @@ -292,6 +294,7 @@ class GameMain {
this.updatePlayfield();
this.resetSong();
this.updateNowPlaying();
this.gameModel.allSlots[0].classList.add('playing');
}
}

Expand Down

0 comments on commit 6c5f6b4

Please sign in to comment.