diff options
Diffstat (limited to 'static/js/src')
| -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()) + }) + }) +} + |
