If tab is in the background then instant jump to bottom w/o animation
This commit is contained in:
parent
fe20faf49d
commit
770b5d05f0
@ -32,7 +32,7 @@ export function jumpToBottom(element) {
|
||||
element.scrollTo({
|
||||
top: element.scrollHeight,
|
||||
left: 0,
|
||||
behavior: 'smooth',
|
||||
behavior: document.visibilityState === 'visible' ? 'smooth' : 'instant',
|
||||
});
|
||||
},
|
||||
50,
|
||||
|
Loading…
x
Reference in New Issue
Block a user