patx/miadruck

Extend listing highlight duration

Commit 1570af9 · Harrison Erd · 2026-01-15T23:42:08-05:00

Changeset
1570af92a03008cae16cc58f466615e48c1e37b2
Parents
e1383e8d14c953de7988e0da1175262764863d7c

View source at this commit

Extend listing highlight duration

Increase highlight duration from 4500ms to 30000ms.

Comments

No comments yet.

Log in to comment

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;