diff options
author | friendica <info@friendica.com> | 2011-12-14 17:23:41 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-14 17:23:41 -0800 |
commit | 001e4023117b23c90a791eedd5c8026c48f45667 (patch) | |
tree | 7feb178f9ff11c7ad25171ed7e350375dd5d5e46 /js | |
parent | 9768adf719dffc59c1f2c7f0d4b2b932fcf9b142 (diff) | |
download | volse-hubzilla-001e4023117b23c90a791eedd5c8026c48f45667.tar.gz volse-hubzilla-001e4023117b23c90a791eedd5c8026c48f45667.tar.bz2 volse-hubzilla-001e4023117b23c90a791eedd5c8026c48f45667.zip |
simplify live update
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/js/main.js b/js/main.js index 2c8a8fad1..96c7fa642 100644 --- a/js/main.js +++ b/js/main.js @@ -241,18 +241,25 @@ $('.tread-wrapper',data).each(function() { var ident = $(this).attr('id'); + if($('#' + ident).length == 0 && profile_page == 1) { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); $('#' + prev).after($(this)); } + else { + $('img',this).each(function() { + $(this).attr('src',$(this).attr('dst')); + }); + $('#' + ident).replaceWith($(this)); + } prev = ident; }); // reset vars for inserting individual items - prev = 'live-' + src; + /* prev = 'live-' + src; $('.wall-item-outside-wrapper',data).each(function() { var ident = $(this).attr('id'); @@ -276,7 +283,7 @@ } prev = ident; }); - + */ $('.like-rotator').hide(); if(commentBusy) { commentBusy = false; |