-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStats.html
More file actions
27 lines (24 loc) · 742 Bytes
/
Stats.html
File metadata and controls
27 lines (24 loc) · 742 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('stats',{
category: 'Docker',
color: '#F6CEF5',
defaults: {
name: {value:""}
},
inputs:1,
outputs:1,
icon: "docker.png",
label: function() {
return this.name||"stats";
}
});
</script>
<script type="text/x-red" data-template-name="stats">
<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="stats">
<p>A simple node that converts the message payloads into all lower-case characters</p>
</script>