mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
change emoncms-out node name back to 'emoncms' to avoid breaking current user flows
This commit is contained in:
parent
df6fe4b17c
commit
1467575f6c
@ -14,7 +14,7 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<script type="text/x-red" data-template-name="emoncms out">
|
||||
<script type="text/x-red" data-template-name="emoncms">
|
||||
<div class="form-row">
|
||||
<label for="node-input-emonServer"><i class="fa fa-globe"></i> Emoncms server</label>
|
||||
<input type="text" id="node-input-emonServer">
|
||||
@ -29,7 +29,7 @@
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script type="text/x-red" data-help-name="emoncms out">
|
||||
<script type="text/x-red" data-help-name="emoncms">
|
||||
<p>Posts data to Emoncms.</p>
|
||||
<p>The <b>msg.payload</b> can contain either a comma separated list of name
|
||||
value pairs ex. name:value,... or a comma separated list of values ex. 1,2,.. .
|
||||
@ -38,7 +38,7 @@
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
RED.nodes.registerType('emoncms out',{
|
||||
RED.nodes.registerType('emoncms',{
|
||||
category: 'output',
|
||||
color:"rgb(91, 192, 222)",
|
||||
defaults: {
|
||||
|
@ -79,7 +79,7 @@ module.exports = function(RED) {
|
||||
});
|
||||
});
|
||||
}
|
||||
RED.nodes.registerType("emoncms out",Emoncms);
|
||||
RED.nodes.registerType("emoncms",Emoncms);
|
||||
|
||||
function Emoncmsin(n) {
|
||||
RED.nodes.createNode(this,n);
|
||||
|
Loading…
Reference in New Issue
Block a user