Added onload to editable image.
This commit is contained in:
parent
d89d2638fb
commit
4c8085ec00
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user