node-red-contrib-whatsapp-link/whatsappLink.html
2022-12-08 21:22:24 +05:30

23 lines
779 B
HTML

<script type="text/javascript">
RED.nodes.registerType('whatsappLink',{
category: 'config',
defaults: {
cName : {value:"whatsapp-web",required:true},
name : {value : "Web"}
},
label: function() {
return this.cName ;
}
});
</script>
<script type="text/html" data-template-name="whatsappLink">
<div class="form-row">
<label for="node-config-input-cName"><i class="fa fa-bookmark"></i> Host</label>
<input type="text" id="node-config-input-cName">
</div>
<div class="form-tips">
<p> Thats sit. you don't have to change any thing here just <b>click the ok
button</b> and proceed. Name can be update if required but with no-space.</p>
</div>
</script>