mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-04-19 19:19:12 +00:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
function scrollLastMessageIntoView() {
|
|
const messages = document.querySelectorAll('.message');
|
|
const lastMessage = messages[messages.length - 1];
|
|
|
|
if (lastMessage !== undefined) {
|
|
lastMessage.scrollIntoView();
|
|
}
|
|
}
|
|
|
|
export { scrollLastMessageIntoView }
|