From 1be9551e9a27d016ffb2fe8f8049b0743b361e0f Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Mon, 1 Apr 2024 23:12:54 +0200 Subject: [PATCH] Fix autoscroll stop not working on firefox --- public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script.js b/public/script.js index 8252c0b79..0ddd66696 100644 --- a/public/script.js +++ b/public/script.js @@ -8587,7 +8587,7 @@ jQuery(async function () { $('#groupCurrentMemberListToggle .inline-drawer-icon').trigger('click'); }, 200); - $('#chat').on('mousewheel touchstart', () => { + $('#chat').on('wheel touchstart', () => { scrollLock = true; });