diff --git a/editable-image.js b/editable-image.js index c5a94a2..ca44fc6 100644 --- a/editable-image.js +++ b/editable-image.js @@ -48,6 +48,7 @@ class EditableImage extends IgniteElement { source: null, fileInput: null, onChange: null, + onLoad: null, objectFit: "contain", objectPosition: "center", width: null, @@ -74,7 +75,8 @@ class EditableImage extends IgniteElement { .style("max-width", this.maxWidth) .style("height", this.height) .style("max-height", this.maxHeight) - .hide(this.source, value => { return value == null; }), + .hide(this.source, value => { return value == null; }) + .on("load", this.onLoad), new input() .type("file") .style("display", "none", true)