1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| module.exports = function(RED) {
|
| function GroupNode(config) {
| RED.nodes.createNode(this, config);
| this.config = {
| name: config.name,
| disp: config.disp,
| width: config.width,
| order: config.order,
| tab: config.tab,
| collapse: config.collapse || false,
| className: config.className || ''
| };
| if (!this.config.hasOwnProperty("disp")) { this.config.disp = true; }
| if (this.config.disp !== false) { this.config.disp = true; }
| if (!this.config.hasOwnProperty("collapse")) { this.config.collapse = false; }
| }
|
| RED.nodes.registerType("ui_group", GroupNode);
| };
|
|