Is it possible to disable all cropper functionality and only enable cropper.zoom()
for example?
If I disable cropper with cropper.disable()
it disables everything.
From the source code it’s seems that this option isn’t supported:
// Disable (freeze) the cropper
disable() {
if (this.ready && !this.disabled) {
this.disabled = true;
addClass(this.cropper, CLASS_DISABLED);
}
return this;
},
You can open an issue or do it yourself...