Problem chyba udało mi się rozwiązać:
function fillCropContainer() {
var instanceArray = [cropper1, cropper2]
var ratio
instanceArray.forEach((el) => {
var imgNatHeight = el.imageData.naturalHeight
var imgNatWidth = el.imageData.naturalWidth
if (imgNatHeight < imgNatWidth) {
ratio = 300 / imgNatHeight
el.zoomTo(ratio)
} else {
ratio = 300 / imgNatWidth
el.zoomTo(ratio)
}
})
}
Muszę to jeszcze tylko potestować.