Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ui_tab.js 398B

123456789101112131415
  1. module.exports = function(RED) {
  2. function TabNode(config) {
  3. RED.nodes.createNode(this, config);
  4. this.config = {
  5. name: config.name,
  6. order: config.order || 0,
  7. icon: config.icon || '',
  8. disabled: config.disabled || false,
  9. hidden: config.hidden || false
  10. };
  11. }
  12. RED.nodes.registerType("ui_tab", TabNode);
  13. };