From fe07bf66373d39ef5f3a4f616a04fa33ffc78ce6 Mon Sep 17 00:00:00 2001 From: Alistair McKinlay Date: Mon, 24 Apr 2017 12:01:24 +0100 Subject: [PATCH] Add fix for slow scrolling when holding pg-up/pg-dn Fixes #1022 --- client/js/lounge.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/js/lounge.js b/client/js/lounge.js index 1857339e..1043465f 100644 --- a/client/js/lounge.js +++ b/client/js/lounge.js @@ -1271,6 +1271,9 @@ $(function() { "pagedown" ], function(e, key) { let container = windows.find(".window.active"); + if (container.is(":animated")) { + return; + } // Chat windows scroll message container if (container.attr("id") === "chat-container") {