From f60636942f6962d2a0861f19d93a84d227b31fb4 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 24 Feb 2026 22:40:55 +0000 Subject: [PATCH] eliminate the wretched hiding console.log, filthy log...... --- nginx/vue/src/components/util/AutoScroll.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/vue/src/components/util/AutoScroll.vue b/nginx/vue/src/components/util/AutoScroll.vue index f319340..c778eaf 100644 --- a/nginx/vue/src/components/util/AutoScroll.vue +++ b/nginx/vue/src/components/util/AutoScroll.vue @@ -29,9 +29,10 @@ function handleHover() { function tick() { const el = container.value; + pos = el.scrollTop / el.scrollHeight; + const reachedBottom = pos <= 0; const reachedTop = pos >= 1; - console.log("speed"); if (reachedBottom) { pos = 0.001;