Editable image now uses a blob instead of raw base64 image data for the source.
This commit is contained in:
parent
ac6c7301c7
commit
48154a8d65
@ -81,18 +81,9 @@ class EditableImage extends IgniteElement {
|
|||||||
if (this.fileInput.files.length > 0) {
|
if (this.fileInput.files.length > 0) {
|
||||||
var file = this.fileInput.files[0];
|
var file = this.fileInput.files[0];
|
||||||
|
|
||||||
//Create a reader to read in the file.
|
this.source = URL.createObjectURL(file);
|
||||||
var reader = new FileReader();
|
|
||||||
reader.onload = (event) => {
|
|
||||||
this.source = event.target.result;
|
|
||||||
|
|
||||||
//Invoke a native change event now that we have
|
this.dispatchEvent(new Event("change"));
|
||||||
//the image file ready.
|
|
||||||
this.dispatchEvent(new Event("change"));
|
|
||||||
};
|
|
||||||
|
|
||||||
//Read it.
|
|
||||||
reader.readAsDataURL(file);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user