Initial commit, 90% there

This commit is contained in:
mdares
2025-12-02 16:27:21 +00:00
commit 755028af7e
7353 changed files with 1759505 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
module.exports = function(RED) {
function TabNode(config) {
RED.nodes.createNode(this, config);
this.config = {
name: config.name,
order: config.order || 0,
icon: config.icon || '',
disabled: config.disabled || false,
hidden: config.hidden || false
};
}
RED.nodes.registerType("ui_tab", TabNode);
};