Clear hint background when starting new question

This commit is contained in:
chris 2025-11-20 09:25:26 -05:00
parent 16d4988bb8
commit dc429b9c72

4
app.js
View File

@ -172,7 +172,9 @@
document.getElementById('answer-display').innerText = "";
document.getElementById('feedback-msg').innerText = "";
document.getElementById('hint-grid').innerHTML = "";
const hintGrid = document.getElementById('hint-grid');
hintGrid.innerHTML = "";
hintGrid.classList.remove('has-stars');
if (game.timeTurnerCharges > 0) {
game.timeTurnerCharges--;