If tab is in the background then instant jump to bottom w/o animation

This commit is contained in:
Gabe Kangas
2022-04-16 21:54:13 -07:00
parent fe20faf49d
commit 770b5d05f0

View File

@@ -32,7 +32,7 @@ export function jumpToBottom(element) {
element.scrollTo({
top: element.scrollHeight,
left: 0,
behavior: 'smooth',
behavior: document.visibilityState === 'visible' ? 'smooth' : 'instant',
});
},
50,