fix mouse wheel bug

pull/40/head
Kai Labusch 5 years ago
parent 87e1ef922e
commit ca4c401973

@ -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…
Cancel
Save