|
1234567891011121314151617181920212223242526272829303132 |
- <script type="text/javascript">
- RED.nodes.registerType('BDebug',{
- category: 'boolean logic ultimate',
- color: '#ff8080',
- defaults: {
- name: {
- value: "Debug"
- }
- },
- inputs:1,
- outputs:0,
- icon: "debug.png",
- label:
- function() {
- return this.name||"Debug";
- },
- paletteLabel: function() {
- return "Debug";
- }
- });
- </script>
-
- <script type="text/x-red" data-template-name="BDebug">
- <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="BDebug">
- <p>A debug node specifically targeting boolean logic.</p>
- </script>
|