Browse Source

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

pull/1842/head
Gabe Kangas 4 years ago
parent
commit
770b5d05f0
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA
  1. 2
      webroot/js/utils/helpers.js

2
webroot/js/utils/helpers.js

@ -32,7 +32,7 @@ export function jumpToBottom(element) { @@ -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…
Cancel
Save