This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
v4.0.0-alpha
Pre-release
Pre-release
fengyuanchen
released this
01 Mar 14:39
·
29 commits
to master
since this release
- The core code of Cropper is replaced with Cropper.js.
- Migration from Cropper 3.x:
- Before:
$().cropper({ crop(event) { console.log( event.x, event.y, event.width, event.height, event.rotate, event.scaleX, event.scaleY, ); }, });
- After:
$().cropper({ crop(event) { console.log( event.detail.x, event.detail.y, event.detail.width, event.detail.height, event.detail.rotate, event.detail.scaleX, event.detail.scaleY, ); }, });
- Before: