mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
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({
|
element.scrollTo({
|
||||||
top: element.scrollHeight,
|
top: element.scrollHeight,
|
||||||
left: 0,
|
left: 0,
|
||||||
behavior: 'smooth',
|
behavior: document.visibilityState === 'visible' ? 'smooth' : 'instant',
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
50,
|
50,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user