From 2167b66f0d3262293c9ba848dece8a5757d19002 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Thu, 25 Dec 2025 10:45:36 -0500 Subject: [PATCH] Adjust debounce to 50ms --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 6d783b7..a06b075 100644 --- a/script.js +++ b/script.js @@ -62,7 +62,7 @@ searchInput?.addEventListener("input", (event) => { const text = item.textContent.toLowerCase(); item.style.display = text.includes(query) ? "" : "none"; }); - }, 150); + }, 50); }); // OCR/formatting errors from epub conversion