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) {
|
||||
var file = this.fileInput.files[0];
|
||||
|
||||
//Create a reader to read in the file.
|
||||
var reader = new FileReader();
|
||||
reader.onload = (event) => {
|
||||
this.source = event.target.result;
|
||||
this.source = URL.createObjectURL(file);
|
||||
|
||||
//Invoke a native change event now that we have
|
||||
//the image file ready.
|
||||
this.dispatchEvent(new Event("change"));
|
||||
};
|
||||
|
||||
//Read it.
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user