mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-06 09:12:39 -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(){
|
onUiUpdate(function(){
|
||||||
gradioApp().querySelectorAll('span, button, select, p').forEach(function(span){
|
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){
|
if(!tooltip){
|
||||||
tooltip = titles[span.value];
|
tooltip = titles[span.value];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue