diff --git a/frontend/src/main.ts b/frontend/src/main.ts index 1f475b2c9a2ccef4d53b4ae672e6b07fa084a57a..35a4447287a6db60bdef07716453ebbe4df38c4c 100644 --- a/frontend/src/main.ts +++ b/frontend/src/main.ts @@ -11,13 +11,13 @@ function onInputHandler(event: Event) { window.addEventListener("load", () => { if (document.getElementById('preview')) { for (const el of document.getElementsByClassName('input-dispatch')) { - console.log(el); + console.debug(el); el.addEventListener('input', onInputHandler); } } for (const op of document.querySelectorAll('.option .preview')) { - console.log(op); + console.debug(op); const input_id = (op as HTMLElement).dataset.for; if (!input_id) { console.error("Missing data-for attribute for", op);