diff options
author | tv <tv@nomic.retiolum> | 2013-11-06 16:04:09 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-11-06 16:04:09 +0100 |
commit | 2a5016b8d705dba4f0689882a04037381cb4374f (patch) | |
tree | f2e877e1b6615456a2d30da31cd846196267ff2c /webchat/hello_web.js | |
parent | c12eb1a354eff6b965db5f4938b35e304784cb97 (diff) | |
parent | 7cbc22526a141801b7386385a87bcbf48b5c5c88 (diff) |
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'webchat/hello_web.js')
-rw-r--r-- | webchat/hello_web.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js index 155a34f3..e1f8f312 100644 --- a/webchat/hello_web.js +++ b/webchat/hello_web.js @@ -24,7 +24,8 @@ var irc_client = new irc.Client('irc.freenode.net', 'kweb', { showErrors: true, port: 6697, autoRejoin: true, - autoConnect: true + autoConnect: true, + stripColors: true }); var reconnect = function() { @@ -88,7 +89,7 @@ var app = connect() res.write('<script src="jquery-2.0.3.min.js"></script>'); res.write('<script src="client.js"></script>'); res.write(krebsimage+'<br>'); - res.write('hello, this is result:<br>'); + res.write('hello, this is #krebs:<br>'); res.write('<table id="chatbox"></table>'); res.end('<input type="text" id="input"><br>'); |