Merge pull request #43 from suchatad/mousewheel_fix

Fix: Mousewheel zooming in Firefox
This commit is contained in:
Unick Soft
2022-12-17 20:18:55 +02:00
committed by GitHub

View File

@@ -185,7 +185,7 @@ function postLoadPage()
return application.CanvasOnMouseUp(e);
}
application.canvas.onmousewheel = function (e)
application.canvas.onwheel = function (e)
{
var e = window.event || e; // old IE support
var delta = Math.max(-1, Math.min(1, (e.wheelDelta || -e.detail)));