18 lines
398 B
HTML
18 lines
398 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>
|
|
|
|
<div class="form-row">
|
|
<label for="node-input-name">Name</label>
|
|
<input type="text" id="node-input-name">
|
|
</div>
|
|
|