mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 10:31:17 -08:00
hints: don't process elements that already have a title
This commit is contained in:
parent
5e4a0e3d24
commit
13d8d65ef9
1 changed files with 3 additions and 1 deletions
|
|
@ -118,7 +118,9 @@ titles = {
|
|||
|
||||
onUiUpdate(function(){
|
||||
gradioApp().querySelectorAll('span, button, select, p').forEach(function(span){
|
||||
tooltip = titles[span.textContent];
|
||||
if (span.title) return; // already has a title
|
||||
|
||||
let tooltip = titles[span.textContent];
|
||||
|
||||
if(!tooltip){
|
||||
tooltip = titles[span.value];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue