forked from MarseyWorld/MarseyWorld
fix image scrolling in chat
parent
767b777e83
commit
a13cc458a4
|
@ -164,8 +164,12 @@ socket.on('speak', function(json) {
|
||||||
register_new_elements(line2);
|
register_new_elements(line2);
|
||||||
bs_trigger(line2)
|
bs_trigger(line2)
|
||||||
|
|
||||||
if (scrolled_down || json.user_id == vid)
|
if (scrolled_down || json.user_id == vid) {
|
||||||
box.scrollTo(0, box.scrollHeight)
|
box.scrollTo(0, box.scrollHeight)
|
||||||
|
setTimeout(function () {
|
||||||
|
box.scrollTo(0, box.scrollHeight)
|
||||||
|
}, 200);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
function send() {
|
function send() {
|
||||||
|
|
Loading…
Reference in New Issue