diff --git a/files/assets/js/chat.js b/files/assets/js/chat.js index 93b9e8339..6038af0ae 100644 --- a/files/assets/js/chat.js +++ b/files/assets/js/chat.js @@ -124,6 +124,9 @@ socket.on('speak', function(json) { setTimeout(function () { box.scrollTo(0, box.scrollHeight) }, 500); + setTimeout(function () { + box.scrollTo(0, box.scrollHeight) + }, 1000); } }) @@ -160,6 +163,9 @@ function send() { setTimeout(function () { box.scrollTo(0, box.scrollHeight) }, 500); + setTimeout(function () { + box.scrollTo(0, box.scrollHeight) + }, 1000); } }