aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-28 18:45:11 -0800
committerfriendica <info@friendica.com>2012-11-28 18:45:11 -0800
commit05e08cb5d2967a12c479ab94187b1ef1bde0a094 (patch)
tree0b70e60b33da3985c5752d7caf0147f471408b91 /js
parent7c047bea332efaa11af0d02878d91823c4bba1ad (diff)
downloadvolse-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.js6
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) {