You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use mouseWheelZoom:'ctrl' to prevent the default behavior of allowing the mousewheel to zoom. This fixes that pesky behavior of scrolling down the page and a croppie capturing your mouse.
Breaking changes
The jQuery update event is now namespaced. If you were listening to it before with $('.crop').on('update', function(){}), you'll need to change it to $('.crop').on('update.croppie', function(){}). The plain javascript version didn't change.