diff options
author | Mario <mario@mariovavti.com> | 2020-06-16 07:32:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-06-16 07:32:55 +0000 |
commit | 70a104f24f3b3e3903d363081569be9af2052758 (patch) | |
tree | b3d82880872255536e3ec8297e3ab6e419fac5d3 /library/cropperjs/docs/examples/customize-preview.html | |
parent | 0f27db6271acb3e0e44bf870659f085c71c8f629 (diff) | |
download | volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.tar.gz volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.tar.bz2 volse-hubzilla-70a104f24f3b3e3903d363081569be9af2052758.zip |
upĂdate copperjs to version 1.5.7
Diffstat (limited to 'library/cropperjs/docs/examples/customize-preview.html')
-rw-r--r-- | library/cropperjs/docs/examples/customize-preview.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/library/cropperjs/docs/examples/customize-preview.html b/library/cropperjs/docs/examples/customize-preview.html index 72a108f8a..51d1e1b42 100644 --- a/library/cropperjs/docs/examples/customize-preview.html +++ b/library/cropperjs/docs/examples/customize-preview.html @@ -77,6 +77,7 @@ window.addEventListener('DOMContentLoaded', function () { var image = document.querySelector('#image'); var previews = document.querySelectorAll('.preview'); + var previewReady = false; var cropper = new Cropper(image, { ready: function () { var clone = this.cloneNode(); @@ -94,9 +95,14 @@ each(previews, function (elem) { elem.appendChild(clone.cloneNode()); }); + previewReady = true; }, crop: function (event) { + if (!previewReady) { + return; + } + var data = event.detail; var cropper = this.cropper; var imageData = cropper.getImageData(); |