don't clear sudoku
All checks were successful
/ build (push) Successful in 51s

This commit is contained in:
Nycki 2025-11-15 10:50:07 -08:00
parent 8f1c9df3e0
commit 9148adbcfb

View file

@ -372,7 +372,8 @@
function clear() { function clear() {
document.querySelector('.week').textContent = ''; document.querySelector('.week').textContent = '';
document.querySelector('.date').textContent = ''; document.querySelector('.date').textContent = '';
document.querySelectorAll('td').forEach(el => el.innerHTML = ' '); document.querySelectorAll('.month td').forEach(el => el.innerHTML = ' ');
document.querySelectorAll('.week td').forEach(el => el.innerHTML = ' ');
} }
document.querySelector('#settings-update').onclick = update; document.querySelector('#settings-update').onclick = update;