Add image paste fallback
Fixes Firefox pasting support (and possibly other browsers)
This commit is contained in:
parent
82cfc227d7
commit
7c89f3718f
|
@ -9,11 +9,19 @@ function dropReplaceImage( imgWrap, files ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const tmpFile = files[0];
|
||||||
|
|
||||||
imgWrap.querySelector('.modify-upload button + button, .touch-none + div button + button')?.click();
|
imgWrap.querySelector('.modify-upload button + button, .touch-none + div button + button')?.click();
|
||||||
const callback = () => {
|
const callback = () => {
|
||||||
const fileInput = imgWrap.querySelector('input[type="file"]');
|
const fileInput = imgWrap.querySelector('input[type="file"]');
|
||||||
if ( fileInput ) {
|
if ( fileInput ) {
|
||||||
fileInput.files = files;
|
if ( files.length === 0 ) {
|
||||||
|
files = new DataTransfer();
|
||||||
|
files.items.add(tmpFile);
|
||||||
|
fileInput.files = files.files;
|
||||||
|
} else {
|
||||||
|
fileInput.files = files;
|
||||||
|
}
|
||||||
fileInput.dispatchEvent(new Event('change'));
|
fileInput.dispatchEvent(new Event('change'));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue