diff options
Diffstat (limited to 'static/js/src/directory.js')
| -rw-r--r-- | static/js/src/directory.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/js/src/directory.js b/static/js/src/directory.js new file mode 100644 index 0000000..51eaaa6 --- /dev/null +++ b/static/js/src/directory.js @@ -0,0 +1,13 @@ + +// Called upon loading /directory + +function initDirectory() { + $('.linkify').each(function() { + var t = $(this); + t.html(buildMsgContent(t.text())); + }); + Search.initInpage() + initLogThumb('.dlogged-dump .thumb', '.dlogged-dump'); +} + +// See log.js |
