Commit 26cc218c authored by JC Brand's avatar JC Brand

Syntax fixes

parent fba9bcfd
...@@ -302,10 +302,10 @@ ...@@ -302,10 +302,10 @@
time = (new Date()).toLocaleTimeString().substring(0,5); time = (new Date()).toLocaleTimeString().substring(0,5);
} }
if (from == xmppchat.connection.bare_jid) { if (from == xmppchat.connection.bare_jid) {
fullname: 'me', fullname = 'me';
sender: 'me', sender = 'me';
else { } else {
sender: 'them', sender = 'them';
} }
var message = new xmppchat.Message({ var message = new xmppchat.Message({
fullname: fullname, fullname: fullname,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment