mirror of
https://github.com/thelounge/thelounge
synced 2025-02-17 05:38:25 +00:00
Merge pull request #1078 from thelounge/1022-slow-scrolling
Add fix for slow scrolling when holding pg-up/pg-dn
This commit is contained in:
commit
06af65cf01
1 changed files with 3 additions and 0 deletions
|
@ -1256,6 +1256,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") {
|
||||
|
|
Loading…
Add table
Reference in a new issue