mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-21 23:00:59 -08:00
fix error in dragdrop logic
This commit is contained in:
4
javascript/dragdrop.js
vendored
4
javascript/dragdrop.js
vendored
@@ -57,8 +57,8 @@ function eventHasFiles(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function dragDropTargetIsPrompt(target) {
|
function dragDropTargetIsPrompt(target) {
|
||||||
if (!(target?.placeholder?.indexOf("Prompt") >= 0)) return true;
|
if (target?.placeholder && target?.placeholder.indexOf("Prompt") >= 0) return true;
|
||||||
if (target?.parentNode?.parentNode) return true;
|
if (target?.parentNode?.parentNode?.className?.indexOf("prompt") > 0) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user