diff options
author | friendica <info@friendica.com> | 2012-11-28 18:45:11 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-28 18:45:11 -0800 |
commit | 05e08cb5d2967a12c479ab94187b1ef1bde0a094 (patch) | |
tree | 0b70e60b33da3985c5752d7caf0147f471408b91 /js | |
parent | 7c047bea332efaa11af0d02878d91823c4bba1ad (diff) | |
download | volse-hubzilla-05e08cb5d2967a12c479ab94187b1ef1bde0a094.tar.gz volse-hubzilla-05e08cb5d2967a12c479ab94187b1ef1bde0a094.tar.bz2 volse-hubzilla-05e08cb5d2967a12c479ab94187b1ef1bde0a094.zip |
trace through the threaded conversation spaghetti to bring back a sane looking network page
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/main.js b/js/main.js index 1cc76c744..bb7e469a6 100644 --- a/js/main.js +++ b/js/main.js @@ -302,7 +302,7 @@ function updateConvItems(mode,data) { if(mode === 'update') { prev = 'threads-begin'; - $('.thread-wrapper',data).each(function() { + $('.thread-wrapper.toplevel_item',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0 && profile_page == 1) { @@ -331,7 +331,7 @@ function updateConvItems(mode,data) { } if(mode === 'append') { next = 'threads-end'; - $('.thread-wrapper',data).each(function() { + $('.thread-wrapper.toplevel_item',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0) { @@ -359,7 +359,7 @@ function updateConvItems(mode,data) { prev = 'threads-begin'; - $('.thread-wrapper',data).each(function() { + $('.thread-wrapper.toplevel_item',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0 && profile_page == 1) { |