patx/miadruck
Extend listing highlight duration
Commit 1570af9 · Harrison Erd · 2026-01-15T23:42:08-05:00
Extend listing highlight duration Increase highlight duration from 4500ms to 30000ms.
Comments
No comments yet.
Diff
diff --git a/index.html b/index.html
index 6f7efcd..51dbe3e 100644
--- a/index.html
+++ b/index.html
@@ -1233,7 +1233,7 @@
setTimeout(() => {
el.classList.add("listing-highlight");
clearTimeout(scrollToListing._t);
- scrollToListing._t = setTimeout(() => el.classList.remove("listing-highlight"), 4500);
+ scrollToListing._t = setTimeout(() => el.classList.remove("listing-highlight"), 30000);
}, 220);
return true;