summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authortim b <timb@camcompu.home>2010-05-30 02:10:49 -0700
committertim b <timb@camcompu.home>2010-05-30 02:10:49 -0700
commit8ad1bb3981936764c8f534659abf52367ccd111b (patch)
tree67959bbcbb1b92db28e05c88f71ba7992e6422fc /static
parenteebc4b09ee139a232a236b46c0f5a60fcc810222 (diff)
make directory display use buildmsgcontent
Diffstat (limited to 'static')
-rw-r--r--static/js/pichat.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index 6046e86..f197079 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -754,11 +754,11 @@ function blinkStop(){
clearInterval(blinkTimer);
}
-function initDirectory() {
- $(".linkify").each(function() {
- var text = jQuery(this).text();
- jQuery(this).html(linkify(text));
- });
+function initDirectory() {
+ $('.linkify').each(function() {
+ var t = $(this);
+ t.html(buildMsgContent(t.text()));
+ });
}
//big hand stuff