2013-10-30 21:38:23 +01:00
|
|
|
|
2018-09-10 17:37:20 +02:00
|
|
|
<script type="text/x-red" data-template-name="nnotify">
|
2013-10-30 21:38:23 +01:00
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-input-title"><i class="fa fa-flag"></i> Title</label>
|
2013-10-30 21:38:23 +01:00
|
|
|
<input type="text" id="node-input-title" placeholder="Node-RED">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-09-03 17:12:26 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
2013-10-30 21:38:23 +01:00
|
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2018-09-10 17:37:20 +02:00
|
|
|
RED.nodes.registerType('nnotify',{
|
2013-10-30 21:38:23 +01:00
|
|
|
category: 'output',
|
|
|
|
defaults: {
|
|
|
|
title: {value:""},
|
|
|
|
name: {value:""}
|
|
|
|
},
|
|
|
|
color:"#a7c9a0",
|
|
|
|
inputs:1,
|
|
|
|
outputs:0,
|
|
|
|
icon: "alert.png",
|
|
|
|
align: "right",
|
2018-09-10 17:37:20 +02:00
|
|
|
paletteLabel: "notify",
|
2013-10-30 21:38:23 +01:00
|
|
|
label: function() {
|
|
|
|
return this.name||this.title||"notify";
|
|
|
|
},
|
|
|
|
labelStyle: function() {
|
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|