Skip to content

Commit

Permalink
minor patch
Browse files Browse the repository at this point in the history
  • Loading branch information
DenialRiver1434 committed May 23, 2023
1 parent db03b92 commit 6f66845
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/keyboard_input_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ KeyboardInputManager.prototype.hidenum = function (event) {
var gameContainer = document.getElementsByClassName("game-container")[0];
if(gameContainer.style.color === 'transparent') gameContainer.style.color = 'white';
else gameContainer.style.color = 'transparent';
var gri = document.getElementsByClassName("game-message")[0];
gri.style.color = 'white';

this.emit("hidenum");
};

Expand Down

0 comments on commit 6f66845

Please sign in to comment.