node-red-contrib-whatsapp-link/whatsappLink.html
2022-12-17 22:34:35 +05:30

23 lines
736 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-gear"></i>Name</label>
<input type="text" id="node-config-input-cName">
</div>
<div class="form-tips">
<p> All done here just <b>click the ok button</b> and proceed.
Name can be update if required but with no-space.</p>
</div>
</script>