mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-25 14:37:02 +01:00
Scroll to bottom when images start to load in
This commit is contained in:
parent
0aeb51f27e
commit
5a249b0b84
@ -1239,6 +1239,13 @@
|
|||||||
return reacts;
|
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) {
|
function fill_discord_messages(messages, jumpscroll, replace) {
|
||||||
if (replace === undefined) {
|
if (replace === undefined) {
|
||||||
replace = null;
|
replace = null;
|
||||||
@ -1341,6 +1348,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$("#chatcontent img").on("load", scroll_on_dom_update);
|
||||||
$('#chatcontent').linkify({
|
$('#chatcontent').linkify({
|
||||||
target: "_blank"
|
target: "_blank"
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user