updating Node Names

This commit is contained in:
rawee
2022-12-01 21:51:33 +05:30
commit 210fcb9aae
12 changed files with 2886 additions and 0 deletions

21
whatsappLink.html Normal file
View File

@@ -0,0 +1,21 @@
<script type="text/javascript">
RED.nodes.registerType('whatsappLink',{
category: 'config',
defaults: {
cName : {value:"whatsapp-web",required:true}
},
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-row">
<label> Don't put space in Name. </label>
</div>
</script>