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