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 11:07:23 +01:00
parent ca4c401973
commit 374a607ea8

View file

@ -781,8 +781,6 @@ function setupInterface(data, file, urls) {
if (event.deltaY < 0) stepsBackward(1);
else stepsForward(1);
updateTable();
});
$('#back').on('click', function() { stepsBackward(displayRows); } );