From 770b5d05f03194cbc758883c7bcc9f4c4dbbb779 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 16 Apr 2022 21:54:13 -0700 Subject: [PATCH] If tab is in the background then instant jump to bottom w/o animation --- webroot/js/utils/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/js/utils/helpers.js b/webroot/js/utils/helpers.js index cd2db3435..149d3a622 100644 --- a/webroot/js/utils/helpers.js +++ b/webroot/js/utils/helpers.js @@ -32,7 +32,7 @@ export function jumpToBottom(element) { element.scrollTo({ top: element.scrollHeight, left: 0, - behavior: 'smooth', + behavior: document.visibilityState === 'visible' ? 'smooth' : 'instant', }); }, 50,