From 5e35b9e2c74bae397f10a7d3393624ce56621e92 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 17 Mar 2023 15:37:20 +0200 Subject: [PATCH] remove leftover console.log --- files/assets/js/bottom.js | 1 - 1 file changed, 1 deletion(-) diff --git a/files/assets/js/bottom.js b/files/assets/js/bottom.js index 32b1b312a..6a0dc4d2c 100644 --- a/files/assets/js/bottom.js +++ b/files/assets/js/bottom.js @@ -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; }; }