summaryrefslogtreecommitdiffstats
path: root/webchat/hello_web.js
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2013-11-06 21:53:51 +0100
committerlassulus <lassulus@googlemail.com>2013-11-06 21:53:51 +0100
commit2f0f23ec0e54aaa0dc7a9c28217f7daca72ea455 (patch)
tree5e41c868a7ab38f7406aca6fd1222c2c818c0caa /webchat/hello_web.js
parentc4854e60e33bc81cb5b6140241026576cbddcc0d (diff)
webchat: nick and time display
Diffstat (limited to 'webchat/hello_web.js')
-rw-r--r--webchat/hello_web.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js
index 86e12957..8e2a0bb8 100644
--- a/webchat/hello_web.js
+++ b/webchat/hello_web.js
@@ -94,8 +94,8 @@ var app = connect()
res.write('<script src="jquery-2.0.3.min.js"></script>');
res.write('<script src="client.js"></script>');
res.write('<div id=bg><div id=chatter>');
- res.write('hello, this is #krebs:<br>');
- res.write('<table id="chatbox"><tr id="foot"><td></td><td></td><td><input type="text" id="input"></td></tr></table>');
+ res.write('hello, this is the official krebs support:<br>');
+ res.write('<table id="chatbox"><tr id="foot"><td id="time"></td><td id="nick" class="chat_from"></td><td><input type="text" id="input"></td></tr></table>');
res.end('</div></div>');
})