mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 02:17:40 -07:00
only scroll to bottom in messaging IF in DM
This commit is contained in:
parent
1df74fcf98
commit
795f2ea639
1 changed files with 3 additions and 1 deletions
|
@ -240,7 +240,9 @@ function onDeleted(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function thisScrollToBottom() {
|
function thisScrollToBottom() {
|
||||||
scrollToBottom($$(rootEl).value, { behavior: 'smooth' });
|
if (window.location.href.includes('my/messaging/')) {
|
||||||
|
scrollToBottom($$(rootEl).value, { behavior: 'smooth' });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onIndicatorClick() {
|
function onIndicatorClick() {
|
||||||
|
|
Loading…
Reference in a new issue