add missing }

This commit is contained in:
Thies Mueller
2025-06-17 13:59:33 +02:00
parent fc1b522846
commit ef32cd3583

View File

@@ -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);
</script>