mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-03 10:50:23 +00:00
add handling to some places in javascript that can potentially cause issues #6898
This commit is contained in:
@@ -93,10 +93,12 @@ function checkBrackets(evt) {
|
||||
}
|
||||
|
||||
var shadowRootLoaded = setInterval(function() {
|
||||
var shadowTextArea = document.querySelector('gradio-app').shadowRoot.querySelectorAll('#txt2img_prompt > label > textarea');
|
||||
if(shadowTextArea.length < 1) {
|
||||
return false;
|
||||
}
|
||||
var sahdowRoot = document.querySelector('gradio-app').shadowRoot;
|
||||
if(! sahdowRoot) return false;
|
||||
|
||||
var shadowTextArea = sahdowRoot.querySelectorAll('#txt2img_prompt > label > textarea');
|
||||
if(shadowTextArea.length < 1) return false;
|
||||
|
||||
|
||||
clearInterval(shadowRootLoaded);
|
||||
|
||||
|
Reference in New Issue
Block a user