Scroll to bottom when images start to load in

This commit is contained in:
Jeremy Zhang 2018-08-09 05:14:50 +00:00
parent 0aeb51f27e
commit 5a249b0b84

View File

@ -1239,6 +1239,13 @@
return reacts;
}
function scroll_on_dom_update() {
var scrollRegion = $(window).height() / 2;
if (!getParameterByName("scrollbartheme") && $("main").prop("scrollHeight") - ($("main").scrollTop() + $("main").outerHeight()) < scrollRegion) {
$("main").scrollTop($("#chatcontent").outerHeight());
}
}
function fill_discord_messages(messages, jumpscroll, replace) {
if (replace === undefined) {
replace = null;
@ -1341,6 +1348,7 @@
}
}
}
$("#chatcontent img").on("load", scroll_on_dom_update);
$('#chatcontent').linkify({
target: "_blank"
});