-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmsmq-receive.html
31 lines (29 loc) · 980 Bytes
/
msmq-receive.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
<script type="text/javascript">
RED.nodes.registerType('msmq-receive', {
category: 'input',
color: '#a6bbcf',
defaults: {
name: { value: "" },
queue: { value: ".\\Private$\\PendingStuff" }
},
inputs: 0,
outputs: 1,
icon: "envelope.png",
label: function () {
return this.name || "msmq-receive";
}
});
</script>
<script type="text/x-red" data-template-name="msmq-receive">
<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>
<div class="form-row">
<label for="node-input-queue"><i class="icon-tag"></i> Queue</label>
<input type="text" id="node-input-queue" placeholder="Queue">
</div>
</script>
<script type="text/x-red" data-help-name="msmq-receive">
<p>A node that listens for MSMQ messages</p>
</script>