mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Fix dragging to/from firefox
This commit is contained in:
parent
8eaa7e9f04
commit
3da13f0cc9
9
javascript/dragdrop.js
vendored
9
javascript/dragdrop.js
vendored
@ -57,7 +57,7 @@ function eventHasFiles(e) {
|
||||
}
|
||||
|
||||
function getEventUrl(e) {
|
||||
return e?.dataTransfer?.getData('URL') || e?.dataTransfer?.getData('text/html')?.match(/(?:src|href)=["'](.*?)["']/)?.[1];
|
||||
return e.dataTransfer?.getData('text/uri-list') || e.dataTransfer?.getData('text/plain');
|
||||
}
|
||||
|
||||
function dragDropTargetIsPrompt(target) {
|
||||
@ -96,13 +96,12 @@ window.document.addEventListener('drop', e => {
|
||||
const files = e.dataTransfer.files;
|
||||
const fileInput = imgParent.querySelector('input[type="file"]');
|
||||
const urlInput = urlParent.querySelector('textarea');
|
||||
if (files && fileInput) {
|
||||
fileInput.files = files;
|
||||
fileInput.dispatchEvent(new Event('change'));
|
||||
}
|
||||
if (url && urlInput) {
|
||||
urlInput.value = url;
|
||||
urlInput.dispatchEvent(new Event('input'));
|
||||
} else if (files && fileInput) {
|
||||
fileInput.files = files;
|
||||
fileInput.dispatchEvent(new Event('change'));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user