node-red-contrib-twilio-ivr
Version:
Node-RED nodes for Twilio IVR development
35 lines (30 loc) • 869 B
HTML
<script type="text/javascript">
RED.nodes.registerType('gather-end',{
category: 'TwilioIVR-function',
color: '#a6bbcf',
defaults: {
name: {value:""}
},
inputs:1,
outputs:1,
icon: 'parser-html.png',
align: 'right',
paletteLabel: 'gather-end',
label: function() {
return this.name||"gather-end";
}
});
</script>
<script type="text/x-red" data-template-name="gather-end">
<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="gather-end">
<p>End TwiML Gather operation.</p>
<h3>References</h3>
<ul>
<li><a href="https://www.twilio.com/docs/voice/twiml/gather">Twilio <Gather> documentation</a></li>
</ul>
</script>