26 lines
658 B
HTML
26 lines
658 B
HTML
<script type="text/javascript">
|
|
RED.nodes.registerType('xilica-ping', {
|
|
category: 'Xilica',
|
|
color: '#D8E7FF',
|
|
defaults: {
|
|
name: { value: "" }
|
|
},
|
|
inputs: 1,
|
|
outputs: 1,
|
|
icon: "font-awesome/fa-plug",
|
|
label: function () { return this.name || "xilica ping"; }
|
|
});
|
|
</script>
|
|
|
|
<script type="text/x-red" data-template-name="xilica-ping">
|
|
<div class="form-row">
|
|
<label for="node-input-name">Name</label>
|
|
<input type="text" id="node-input-name">
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="xilica-ping">
|
|
<p>Simple test node that returns a fixed payload to confirm the Xilica nodes module is installed.</p>
|
|
</script>
|
|
|