Added onload to editable image.

This commit is contained in:
Matt Mo 2020-11-14 11:34:35 -08:00
parent d89d2638fb
commit 4c8085ec00

View File

@ -48,6 +48,7 @@ class EditableImage extends IgniteElement {
source: null, source: null,
fileInput: null, fileInput: null,
onChange: null, onChange: null,
onLoad: null,
objectFit: "contain", objectFit: "contain",
objectPosition: "center", objectPosition: "center",
width: null, width: null,
@ -74,7 +75,8 @@ class EditableImage extends IgniteElement {
.style("max-width", this.maxWidth) .style("max-width", this.maxWidth)
.style("height", this.height) .style("height", this.height)
.style("max-height", this.maxHeight) .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() new input()
.type("file") .type("file")
.style("display", "none", true) .style("display", "none", true)