From 2842e3a035f4813a40ac71959946a133aa15980a Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Fri, 13 Jan 2023 13:09:51 -0300 Subject: [PATCH] Automatically scroll to bottom of chat body on new messages --- src/interface/web/chat.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/interface/web/chat.html b/src/interface/web/chat.html index 72322322..48867edc 100644 --- a/src/interface/web/chat.html +++ b/src/interface/web/chat.html @@ -32,6 +32,9 @@
${message}
`; + + // Scroll to bottom of input-body element + document.getElementById("chat-body").scrollTop = document.getElementById("chat-body").scrollHeight; } function chat() {