Adjust debounce to 50ms
This commit is contained in:
parent
1dc0fffbbe
commit
8418681f89
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ searchInput?.addEventListener("input", (event) => {
|
||||||
const text = item.textContent.toLowerCase();
|
const text = item.textContent.toLowerCase();
|
||||||
item.style.display = text.includes(query) ? "" : "none";
|
item.style.display = text.includes(query) ? "" : "none";
|
||||||
});
|
});
|
||||||
}, 150);
|
}, 50);
|
||||||
});
|
});
|
||||||
|
|
||||||
// OCR/formatting errors from epub conversion
|
// OCR/formatting errors from epub conversion
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue