diff options
| author | sostler <sbostler@gmail.com> | 2010-03-04 23:49:38 -0500 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-03-04 23:49:38 -0500 |
| commit | 8ec592855b71751897c5448cdc591d1595ee6f86 (patch) | |
| tree | 8f056597fc680714af87d1948fd590424c1abe11 /static | |
| parent | c5812c51a39ea3c10fe4eb4f64f2b7e487c52d82 (diff) | |
| parent | e8142b2742433ea26f6434e5933cddea8b4711c2 (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
Diffstat (limited to 'static')
| -rwxr-xr-x | static/js/pichat.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js index b322ae9..fd33729 100755 --- a/static/js/pichat.js +++ b/static/js/pichat.js @@ -456,4 +456,11 @@ function blinkStart(){ function blinkStop(){ clearInterval(blinkTimer); +} + +function initDirectory() { + $(".linkify").each(function() { + var text = jQuery(this).text(); + jQuery(this).html(linkify(text)); + }); }
\ No newline at end of file |
