remove leftover console.log

pull/142/head
Aevann 2023-03-17 15:37:20 +02:00
parent 146eb45122
commit 5e35b9e2c7
1 changed files with 0 additions and 1 deletions

View File

@ -197,7 +197,6 @@ document.addEventListener("click", function(e){
const inputs = document.querySelectorAll('input[type="number"]')
for (const input of inputs) {
input.onkeyup = () => {
console.log(1)
if (parseInt(input.value) > parseInt(input.max)) input.value = input.max;
};
}