-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpipe1.html
More file actions
26 lines (24 loc) · 710 Bytes
/
Copy pathpipe1.html
File metadata and controls
26 lines (24 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<script type="text/javascript">
RED.nodes.registerType('pipe1',{
category: 'Pipes',
color: '#42f4b9',
defaults: {
name: {value:""}
},
inputs:1,
outputs:1,
icon: "white-globe.png",
label: function() {
return this.name||"pipe1";
}
});
</script>
<script type="text/x-red" data-template-name="pipe1">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="pipe1">
<p>pipe1 will use apply tax example: {"tax":8.9}</p>
</script>