Skip to content

Commit 2fea4f1

Browse files
authored
Resolved issue of mouse scrolling on Mozila firefox (#856)
Resolved issue of mouse scrolling on Mobile firefox
1 parent e7a45b1 commit 2fea4f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2095,7 +2095,7 @@ function BlackboxLogViewer() {
20952095
}
20962096
});
20972097

2098-
$(document).on("mousewheel", function (e) {
2098+
$(document).on("wheel", function (e) {
20992099
if ($(e.target).hasClass("no-wheel")) {
21002100
// prevent mousewheel scrolling on non scrollable elements.
21012101
e.preventDefault();

0 commit comments

Comments
 (0)