1
0
Fork 0
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:
Kai Labusch 2019-12-12 10:51:30 +01:00
parent 87e1ef922e
commit ca4c401973

View file

@ -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);