summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorsostler <sbostler@gmail.com>2009-11-14 14:52:57 -0500
committersostler <sbostler@gmail.com>2009-11-14 14:52:57 -0500
commit2d15a65176b603b3123f38721859da677261d82d (patch)
tree95821eeb4ed5806e31567f89ff192f1c8a764f0e /static
parentd63201c60439eff2a170bffe447d53e215887ef1 (diff)
Fixed msgDev type
Diffstat (limited to 'static')
-rwxr-xr-xstatic/pichat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/pichat.js b/static/pichat.js
index c612649..4c950af 100755
--- a/static/pichat.js
+++ b/static/pichat.js
@@ -90,7 +90,7 @@ function buildMessageDiv(msg) {
return linkify(escapeHtml(msg.content));
}
}
- return '<div class="msgDev"><b>' + escapeHtml(msg.nick) + ': </b>'
+ return '<div class="msgDiv"><b>' + escapeHtml(msg.nick) + ': </b>'
+ buildContent(msg.content) + '</div>';
}