From 4c8085ec00a49bc876d0d4889c4b82d030a0ce27 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Sat, 14 Nov 2020 11:34:35 -0800 Subject: [PATCH] Added onload to editable image. --- editable-image.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)