Commit bb80eea9 authored by AUTOMATIC's avatar AUTOMATIC
Browse files

eslint the merged code

parent c08f2293
Loading
Loading
Loading
Loading
+39 −39
Original line number Diff line number Diff line
@@ -144,25 +144,25 @@ function updateTooltipForSelect(select){

    select.onchange = function() {
        select.title = localization[titles[select.value]] || titles[select.value] || "";
    }
    };
}

observedTooltipElements = {"SPAN": 1, "BUTTON": 1, "SELECT": 1, "P": 1}
var observedTooltipElements = {SPAN: 1, BUTTON: 1, SELECT: 1, P: 1};

onUiUpdate(function(m) {
    m.forEach(function(record) {
        record.addedNodes.forEach(function(node) {
            if (observedTooltipElements[node.tagName]) {
                updateTooltipForSpan(node)
                updateTooltipForSpan(node);
            }
            if (node.tagName == "SELECT") {
                updateTooltipForSelect(node)
                updateTooltipForSelect(node);
            }

            if (node.querySelectorAll) {
                node.querySelectorAll('span, button, select, p').forEach(updateTooltipForSpan)
    	        node.querySelectorAll('select').forEach(updateTooltipForSelect)
                node.querySelectorAll('span, button, select, p').forEach(updateTooltipForSpan);
                node.querySelectorAll('select').forEach(updateTooltipForSelect);
            }
        })
    })
})
        });
    });
});
+1 −1
Original line number Diff line number Diff line
@@ -442,7 +442,7 @@ function updateImg2imgResizeToTextAfterChangingImage() {
        gradioApp().getElementById('img2img_update_resize_to').click();
    }, 500);

    return []
    return [];

}