Editable image now uses a blob instead of raw base64 image data for the source.

This commit is contained in:
MattMo 2022-03-06 20:19:23 -08:00
parent ac6c7301c7
commit 48154a8d65

View File

@ -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
//the image file ready.
this.dispatchEvent(new Event("change")); this.dispatchEvent(new Event("change"));
};
//Read it.
reader.readAsDataURL(file);
} }
} }