Make messages div scroll all the way to the bottom

resolves #18
This commit is contained in:
joeyak 2019-03-21 21:20:29 -04:00
parent d13de4213f
commit 53e103302a
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ function appendMessages(msg) {
msgs.first().remove();
}
$("#messages").append(msg).scrollTop(9e6);
$("#messages").append(msg);
$("#messages").children().last()[0].scrollIntoView({ block: "end", behavior: "smooth" });
}
function purgeChat() {