Revert "Reset image input when dragover new image"
This reverts commit 9035afbab5
.
This commit is contained in:
parent
e9ba2d42d6
commit
b5693699b8
17
javascript/dragdrop.js
vendored
17
javascript/dragdrop.js
vendored
|
@ -40,15 +40,6 @@ function dropReplaceImage( imgWrap, files ) {
|
|||
}
|
||||
}
|
||||
|
||||
function pressClearBtn(hoverElems) {
|
||||
//Find all buttons hovering over the image box
|
||||
let btns = Array.from(hoverElems.querySelectorAll("button"))
|
||||
|
||||
//Press the last btn which will be the X button
|
||||
if (btns.length)
|
||||
btns[btns.length-1].click()
|
||||
}
|
||||
|
||||
window.document.addEventListener('dragover', e => {
|
||||
const target = e.composedPath()[0];
|
||||
const imgWrap = target.closest('[data-testid="image"]');
|
||||
|
@ -57,13 +48,7 @@ window.document.addEventListener('dragover', e => {
|
|||
}
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
|
||||
if (e.dataTransfer)
|
||||
e.dataTransfer.dropEffect = 'copy';
|
||||
|
||||
//If is gr.Interface clear image on hover
|
||||
if (target.previousElementSibling)
|
||||
pressClearBtn(target.previousElementSibling)
|
||||
e.dataTransfer.dropEffect = 'copy';
|
||||
});
|
||||
|
||||
window.document.addEventListener('drop', e => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user