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,
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)