-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjar-func.html
38 lines (36 loc) · 1.04 KB
/
jar-func.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
30
31
32
33
34
35
36
37
38
<script type="text/javascript">
RED.nodes.registerType('jar-func', {
category: 'function',
color: '#00bbff',
defaults: {
name: {value: "JarFunc"},
jar: {value: ""},
},
inputs: 1,
outputs: 1,
icon: "function.png",
label: function () {
return this.name || "jar-func";
}
});
</script>
<script type="text/x-red" data-template-name="jar-func">
<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-name"><i class="icon-tag"></i> Jar </label>
<input type="text" id="node-input-jar" placeholder="Jar">
</div>
</script>
<script type="text/x-red" data-help-name="jar-func">
<p>运行Jar程序</p>
<h3>References</h3>
<ul>
<li><a href="https://www.npmjs.com/package/node-red-contrib-jar-func">
node-red-contrib-jar-func README</a></li>
<li><a href="https://github.com/jeffszh/MyJarNode">
https://github.com/jeffszh/MyJarNode</a></li>
</ul>
</script>