Apply consistent style to node-red-nodes

(not updating npm for this yet - just whitespace)
This commit is contained in:
dceejay
2015-05-11 19:25:39 +01:00
parent 84f61a0466
commit f497b57b7d
18 changed files with 278 additions and 273 deletions

View File

@@ -23,7 +23,7 @@ module.exports = function(RED) {
var PusherClient = require('pusher-client');
//node for subscribing to an event/channel
function PusherNode(n) {
function PusherNode(n) {
// Create a RED node
RED.nodes.createNode(this,n);
@@ -88,9 +88,9 @@ module.exports = function(RED) {
this.on("close", function() {
});
}
}
//debugging on the output:
//debugging on the output:
var displayResult = function(result) {
node.log(result);
};