Automatically scroll to bottom of chat body on new messages

This commit is contained in:
Debanjum Singh Solanky
2023-01-13 13:09:51 -03:00
parent d170747ec2
commit 2842e3a035

View File

@@ -32,6 +32,9 @@
<div class="chat-message-text">${message}</div>
</div>
`;
// Scroll to bottom of input-body element
document.getElementById("chat-body").scrollTop = document.getElementById("chat-body").scrollHeight;
}
function chat() {