Releases: Foliotek/Croppie
Releases · Foliotek/Croppie
Small fix
2.6.2
Small fix
Small release to copy the image class when replacing the image.
2.6.0
What's in this release?
- Several bug fixes
- Documentation updates
- A couple new features
Bug Fixes
New Features
- 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.
Accessibility
This release contains non-breaking accessibility changes.
2.5.0
2.4.1
Fixes
Several changes
This release includes several changes:
- Two new result types
type: 'blob'
- which will return a file blobtype: 'rawcanvas'
- which will return the canvas object and allow you to manipulate before getting the result
- Responsive boundary dimensions.
- by default the boundary will take up 100% of the container.
- Ability to specify an image in the constructor of croppie and fetch the URL from that image
- Fixes for enforceBoundary: false and getting the result in safari and IE11
- Zooming tweaks
v2.3.0
2.3.0
2.2.0
- Croppie receives focus and can be controlled via keyboard
- Fix bug in zooming on edges
- Add event listener capabilities for update event