diff options
| author | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2013-09-10 13:10:56 -0400 |
|---|---|---|
| committer | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2013-09-10 13:10:56 -0400 |
| commit | 7a62c03ebe5c36a47274d170ce8c39957cdf437c (patch) | |
| tree | 88e885767feef778bde41cce32321724471723ce /static/js/src/log.js | |
| parent | c1550c8b525521251d8213740dc56371644dc708 (diff) | |
reveal favs on /log
Diffstat (limited to 'static/js/src/log.js')
| -rw-r--r-- | static/js/src/log.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/static/js/src/log.js b/static/js/src/log.js index e5a93d9..0f678fe 100644 --- a/static/js/src/log.js +++ b/static/js/src/log.js @@ -31,4 +31,15 @@ function initLogThumb(selector, parentSelector) { } } }) -}
\ No newline at end of file +} + +function load_favs(){ + $(function(){ + $(".permalink").each(function(){ + var $div = $("<div>"); + $div.load(this.href + " .faver-list"); + $div.insertBefore($(this).parent()) + }) + }) +} + |
