From e256110eac44daf4fd95668755ab45c516bfa891 Mon Sep 17 00:00:00 2001 From: Dave C-J Date: Thu, 28 Aug 2014 21:04:16 +0100 Subject: [PATCH] Slight tweak to text spacing in IRC node (Thanks to _jhr007_ for spotting) Also taking chance to update to fa icons. Closes #359 --- nodes/core/social/91-irc.html | 18 +++++++++--------- nodes/core/social/91-irc.js | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/nodes/core/social/91-irc.html b/nodes/core/social/91-irc.html index 36ce711b9..57aac4b80 100644 --- a/nodes/core/social/91-irc.html +++ b/nodes/core/social/91-irc.html @@ -16,15 +16,15 @@ diff --git a/nodes/core/social/91-irc.js b/nodes/core/social/91-irc.js index 262a233bf..f8986a913 100644 --- a/nodes/core/social/91-irc.js +++ b/nodes/core/social/91-irc.js @@ -75,12 +75,12 @@ module.exports = function(RED) { this.ircclient.addListener('part', function(channel, who, reason) { var msg = { "payload": { "type":"part", "who":who, "channel":channel, "reason":reason } }; node.send([null,msg]); - node.log(who+'has left '+channel+': '+reason); + node.log(who+' has left '+channel+': '+reason); }); this.ircclient.addListener('quit', function(nick, reason, channels, message) { var msg = { "payload": { "type":"quit", "who":nick, "channel":channels, "reason":reason } }; node.send([null,msg]); - node.log(nick+'has quit '+channels+': '+reason); + node.log(nick+' has quit '+channels+': '+reason); }); this.ircclient.addListener('kick', function(channel, who, by, reason) { var msg = { "payload": { "type":"kick", "who":who, "channel":channel, "by":by, "reason":reason } };