-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdaikin-api.html
More file actions
executable file
·43 lines (38 loc) · 821 Bytes
/
daikin-api.html
File metadata and controls
executable file
·43 lines (38 loc) · 821 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<script type="text/javascript">
RED.nodes.registerType('daikin-api',
{
category: 'network',
color: '#94c1d0',
defaults:
{
name: {
value: ""
},
server:
{
value: "",
type: "daikin-server",
},
},
inputs: 1,
outputs: 1,
icon: 'bridge.svg',
label: function()
{
return this.name || 'Daikin API';
},
});
</script>
<script type="text/html" data-template-name="daikin-api">
<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>
<div class="form-row">
<label for="node-input-server"><i class="fa fa-globe"></i> Server</label>
<input type="text" id="node-input-server">
</div>
</script>
<script type="text/html" data-help-name="daikin-api">
<p>Node for Daikin API</p>
</script>