From 2e63da217c499cc8a6874e34d900dff621774b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 22 Jul 2026 14:56:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Prevent=20Termynal=20controls=20?= =?UTF-8?q?from=20scrolling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/js/termynal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/js/termynal.js b/docs/js/termynal.js index 45bb371c83..db71f65a5c 100644 --- a/docs/js/termynal.js +++ b/docs/js/termynal.js @@ -133,7 +133,7 @@ class Termynal { this.container.innerHTML = '' this.init() } - restart.href = '#' + restart.href = 'javascript:void(0)' restart.setAttribute('data-terminal-control', '') restart.innerHTML = "restart ↻" return restart @@ -147,7 +147,7 @@ class Termynal { this.typeDelay = 0 this.startDelay = 0 } - finish.href = '#' + finish.href = 'javascript:void(0)' finish.setAttribute('data-terminal-control', '') finish.innerHTML = "fast →" this.finishElement = finish