Update help_popup.js

This commit is contained in:
kijai 2024-04-08 02:03:16 +03:00
parent 029ba664b5
commit c03dfa2d62

View File

@ -52,7 +52,10 @@ app.registerExtension({
if (nodeData?.category?.startsWith("KJNodes")) {
addDocumentation(nodeData, nodeType);
}
if (nodeData?.category?.includes("SUPIR")) {
if (nodeData?.category?.startsWith("SUPIR")) {
addDocumentation(nodeData, nodeType);
}
if (nodeData?.category?.startsWith("VoiceCraft")) {
addDocumentation(nodeData, nodeType);
}
} catch (error) {
@ -104,6 +107,9 @@ const create_documentation_stylesheet = () => {
/* Scrollbar styling for Firefox */
scrollbar-width: thin;
scrollbar-color: var(--fg-color) var(--bg-color);
a {
color: yellow;
}
a:visited {
color: orange;
}