node-red-nodes/social/notify/57-notify.html

35 lines
981 B
HTML
Raw Permalink Normal View History

2013-10-30 21:38:23 +01: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">
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",
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>