27 lines
741 B
HTML
27 lines
741 B
HTML
<script type="text/javascript">
|
|
RED.nodes.registerType("advanced-reactor",{
|
|
category: 'wbd typical',
|
|
color: '#c4cce0',
|
|
defaults: {
|
|
name: {value:""}
|
|
},
|
|
inputs: 1,
|
|
outputs: 1,
|
|
icon: "font-awesome/fa-recycle",
|
|
label: function() {
|
|
return this.name||"advanced-reactor";
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<script type="text/html" data-template-name="advanced-reactor">
|
|
<div class="form-row">
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/html" data-help-name="advanced-reactor">
|
|
<p>New reactor node</p>
|
|
</script>
|