undo skipping crop on 128²

This commit is contained in:
Max Bradbury 2020-11-08 20:07:26 +00:00
parent 6e43249d64
commit afc626bae0
1 changed files with 1 additions and 9 deletions

View File

@ -165,15 +165,7 @@ async function run() {
buttonImageProceed.removeAttribute("disabled");
}
if (load_image(e.target.result) === "128×128") {
// we can't just do `buttonImageProceed.click()`
// because this calls the handleImage() function, which we don't want here
el("page-image").style.display = "none";
el("page-room").style.display = "block";
loadPreview();
} else {
cropper.loadImage(e.target.result);
}
cropper.loadImage(e.target.result);
}, "image");
});