-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroon.html
29 lines (27 loc) · 873 Bytes
/
roon.html
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
<script type="text/javascript">
RED.nodes.registerType('roon-core',{
category: 'function',
color: '#FFFFFF',
defaults: {
name: {value:""}
},
inputLabels: "JSON input",
outputLabels: ["state","status","images","browse","queue"],
inputs:1,
outputs:5,
icon: "roon.png",
palettelabel:"white",
label: function() {
return this.name||"roon-core";
}
});
</script>
<script type="text/html" data-template-name="roon-core">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-command" placeholder="Name">
</div>
</script>
<script type="text/html" data-help-name="roon-core">
<p>A node to control your roon core.</p>
</script>