From ef32cd3583ec61efc3591b45667e968bcc9b892d Mon Sep 17 00:00:00 2001 From: Thies Mueller <> Date: Tue, 17 Jun 2025 13:59:33 +0200 Subject: [PATCH] add missing } --- index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/index.php b/index.php index f41ad05..21ed213 100644 --- a/index.php +++ b/index.php @@ -146,6 +146,7 @@ setInterval(() => { if (box.scrollTop + box.clientHeight >= box.scrollHeight) scrollDirection = -1; if (box.scrollTop <= 0) scrollDirection = 1; box.scrollTop += scrollDirection * 1; + } }, 100);