diff options
author | Felix Richter <github@syntax-fehler.de> | 2013-11-06 16:12:34 +0100 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2013-11-06 16:12:34 +0100 |
commit | 1ea4ebba7a392f2a4a369c5693c2eb705958bd77 (patch) | |
tree | 3603db53e6524db8fdcaba31b978bec7c215a193 /webchat | |
parent | 16a4cda248de734f3771c0bb721ec1834ad96cc8 (diff) |
webchat: add spaces around hello arrow
Diffstat (limited to 'webchat')
-rw-r--r-- | webchat/hello_web.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js index e1f8f312..81048d38 100644 --- a/webchat/hello_web.js +++ b/webchat/hello_web.js @@ -59,7 +59,7 @@ conn.write(JSON.stringify({from: 'system', message: 'hello'})) var object = JSON.parse(message); object.from = name console.log(object.message); - irc_client.say("#krebs", name + '→' + object.message); + irc_client.say("#krebs", name + ' → ' + object.message); Clients.broadcast(object); } catch (error) { |