diff --git a/files/assets/js/chat.js b/files/assets/js/chat.js index 05984f9b31..e75c38f8f9 100644 --- a/files/assets/js/chat.js +++ b/files/assets/js/chat.js @@ -169,6 +169,9 @@ socket.on('speak', function(json) { setTimeout(function () { box.scrollTo(0, box.scrollHeight) }, 200); + setTimeout(function () { + box.scrollTo(0, box.scrollHeight) + }, 500); } }) @@ -200,6 +203,9 @@ function send() { setTimeout(function () { box.scrollTo(0, box.scrollHeight) }, 200); + setTimeout(function () { + box.scrollTo(0, box.scrollHeight) + }, 500); } }