From eb9cadd36db06ee95443bd48ad10349cafd7fea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Sat, 31 May 2025 21:01:20 +0300 Subject: [PATCH] focus textarea when replying --- js/thread.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/thread.js b/js/thread.js index 6f25dec..660ee83 100644 --- a/js/thread.js +++ b/js/thread.js @@ -5,6 +5,7 @@ button.addEventListener("click", (e) => { ta.value += button.value; ta.scrollIntoView() + ta.focus(); }) }