From db9e02737d6c07ae34d2349e39ae9191ea8051f3 Mon Sep 17 00:00:00 2001 From: limepotato Date: Mon, 22 Jul 2024 19:53:02 -0600 Subject: [PATCH] ignore warning --- public/scripts/limepot.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/scripts/limepot.js b/public/scripts/limepot.js index 6456884..4e5b74e 100644 --- a/public/scripts/limepot.js +++ b/public/scripts/limepot.js @@ -54,12 +54,14 @@ const audio = new Audio("/assets/sounds/ui/zapsplat_multimedia_button_click_004_ const buttons = document.querySelectorAll("button"); const links = document.querySelectorAll("a"); +// biome-ignore lint/complexity/noForEach: links.forEach(a => { a.addEventListener("click", () => { audio.play(); }) }) +// biome-ignore lint/complexity/noForEach: buttons.forEach(button => { button.addEventListener("click", () => { audio.play();