Skip to content

Commit

Permalink
Update game.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dianarose98 committed Nov 10, 2021
1 parent bb3a229 commit a1b3ca6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions game.js
Expand Up @@ -14,7 +14,7 @@ function start() {
document.getElementById("question").innerHTML = "Попытка " + stage + ": " + middle;

document.getElementById("small").classList.remove("notOnScreen");
document.getElementById("right").classList.remove("notOnScreen");
document.getElementById("bingo").classList.remove("notOnScreen");
document.getElementById("big").classList.remove("notOnScreen");
}

Expand Down Expand Up @@ -59,7 +59,7 @@ function checkGame() {
document.getElementById("question").innerHTML = "Вы загадали число " + min;

document.getElementById("small").classList.add("notOnScreen");
document.getElementById("right").classList.add("notOnScreen");
document.getElementById("bingo").classList.add("notOnScreen");
document.getElementById("big").classList.add("notOnScreen");


Expand All @@ -73,4 +73,4 @@ function checkGame() {
}

document.getElementById("question").innerHTML = "Попытка " + stage + ": " + middle;
}
}

0 comments on commit a1b3ca6

Please sign in to comment.