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
commit 4eeb746d21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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