mirror of
https://github.com/qurator-spk/neat.git
synced 2025-06-11 20:59:54 +02:00
fix mouse wheel bug
This commit is contained in:
parent
87e1ef922e
commit
ca4c401973
1 changed files with 2 additions and 0 deletions
2
neath.js
2
neath.js
|
@ -777,6 +777,8 @@ function setupInterface(data, file, urls) {
|
|||
$('#tableregion')[0].addEventListener("wheel",
|
||||
function(event) {
|
||||
|
||||
if (editingTd != null) return;
|
||||
|
||||
if (event.deltaY < 0) stepsBackward(1);
|
||||
else stepsForward(1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue