anvaka / panzoom

Universal pan and zoom library (DOM, SVG, Custom)
https://anvaka.github.io/panzoom/demo/attach-via-script.html
MIT License
1.79k stars 287 forks source link

Unify the Event API #322

Open calebmcelroy opened 7 months ago

calebmcelroy commented 7 months ago

This introduces beforeTouchStart and beforeDoubleClick, and deprecates onTouch and onDoubleClick.

Both beforeTouchStart and beforeDoubleClick allow returning true to ignore the event, similar to beforeWheel and beforeMouseDown, thus unifying the event API. This change is backward compatible, as both onTouch and onDoubleClick still support the original behavior.

calebmcelroy commented 7 months ago

This is a great package thanks so much your work on this!