fix paste not working in firefox
fix paste always going into txt2img field
This commit is contained in:
parent
a156c097ab
commit
33ae6be55e
2 changed files with 14 additions and 17 deletions
2
javascript/dragdrop.js
vendored
2
javascript/dragdrop.js
vendored
|
@ -43,7 +43,7 @@ function dropReplaceImage( imgWrap, files ) {
|
||||||
window.document.addEventListener('dragover', e => {
|
window.document.addEventListener('dragover', e => {
|
||||||
const target = e.composedPath()[0];
|
const target = e.composedPath()[0];
|
||||||
const imgWrap = target.closest('[data-testid="image"]');
|
const imgWrap = target.closest('[data-testid="image"]');
|
||||||
if ( !imgWrap ) {
|
if ( !imgWrap && target.placeholder != "Prompt") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
|
@ -2,21 +2,18 @@ window.onload = (function(){
|
||||||
window.addEventListener('drop', e => {
|
window.addEventListener('drop', e => {
|
||||||
const target = e.composedPath()[0];
|
const target = e.composedPath()[0];
|
||||||
const idx = selected_gallery_index();
|
const idx = selected_gallery_index();
|
||||||
let prompt_target = "txt2img_prompt_image";
|
if (target.placeholder != "Prompt") return;
|
||||||
if (idx === 1) {
|
|
||||||
prompt_target = "img2img_prompt_image";
|
let prompt_target = get_tab_index('tabs') == 1 ? "img2img_prompt_image" : "txt2img_prompt_image";
|
||||||
}
|
|
||||||
if (target.placeholder === "Prompt") {
|
e.stopPropagation();
|
||||||
e.stopPropagation();
|
e.preventDefault();
|
||||||
e.preventDefault();
|
const imgParent = gradioApp().getElementById(prompt_target);
|
||||||
const imgParent = gradioApp().getElementById(prompt_target);
|
const files = e.dataTransfer.files;
|
||||||
const files = e.dataTransfer.files;
|
const fileInput = imgParent.querySelector('input[type="file"]');
|
||||||
const fileInput = imgParent.querySelector('input[type="file"]');
|
if ( fileInput ) {
|
||||||
if ( fileInput ) {
|
fileInput.files = files;
|
||||||
fileInput.files = files;
|
fileInput.dispatchEvent(new Event('change'));
|
||||||
fileInput.dispatchEvent(new Event('change'));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
});
|
|
||||||
|
|
Loading…
Reference in a new issue