diff options
Diffstat (limited to 'static/js/pichat2.js')
| -rw-r--r-- | static/js/pichat2.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/static/js/pichat2.js b/static/js/pichat2.js index ceeb397..5fd0de8 100644 --- a/static/js/pichat2.js +++ b/static/js/pichat2.js @@ -547,7 +547,6 @@ function dragTarget (target, callbacks) { } base.enter = function(e){ base.target.classList.add('over'); - console.log(e.target); if ('enter' in callbacks) { callbacks.enter(Drag.url); } @@ -985,6 +984,18 @@ function initLogThumb(selector, parentSelector) { } }) } + +function load_favs(){ + $(function(){ + $(".permalink").each(function(){ + var $div = $("<div>"); + $div.load(this.href + " .faver-list"); + $div.insertBefore($(this).parent()) + }) + }) +} + + // Messages |
