Skip to content

Commit

Permalink
feat: hand-find html
Browse files Browse the repository at this point in the history
  • Loading branch information
hadevyi committed Oct 1, 2021
1 parent 5bffb02 commit 4c6f5f8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions hand-find.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<script type="text/javascript">
RED.nodes.registerType("hand-find", {
category: "motion pose",
color: "#B2A1F4",
defaults: {
name: { value: "" },
},
inputs: 1,
outputs: 1,
icon: "font-awesome/fa-hand-paper-o",
paletteLabel: "hand find",
label: function () {
return this.name || "hand find";
},
});
</script>

<script type="text/html" data-template-name="hand-find">
<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>
</script>

<script type="text/html" data-help-name="hand-find">
<p>hand-find</p>
</script>

0 comments on commit 4c6f5f8

Please sign in to comment.