add missing }

This commit is contained in:
Thies Mueller 2025-06-17 13:59:33 +02:00
parent fc1b522846
commit ef32cd3583
No known key found for this signature in database
GPG Key ID: 8F7CEF80016CA403

View File

@ -146,6 +146,7 @@ setInterval(() => {
if (box.scrollTop + box.clientHeight >= box.scrollHeight) scrollDirection = -1; if (box.scrollTop + box.clientHeight >= box.scrollHeight) scrollDirection = -1;
if (box.scrollTop <= 0) scrollDirection = 1; if (box.scrollTop <= 0) scrollDirection = 1;
box.scrollTop += scrollDirection * 1; box.scrollTop += scrollDirection * 1;
}
}, 100); }, 100);
</script> </script>