mark read after infinite scroll

dont mark read if already read
This commit is contained in:
barisusakli
2014-10-14 02:39:20 -04:00
parent 6ff00a935f
commit 835c58d27d
2 changed files with 32 additions and 11 deletions

View File

@@ -149,7 +149,7 @@ define('forum/topic', dependencies, function(pagination, infinitescroll, threadT
var postcount = $('.user_postcount_' + data.posts[i].uid);
postcount.html(parseInt(postcount.html(), 10) + 1);
}
socket.emit('topics.markAsRead', [tid]);
createNewPosts(data);
}
@@ -195,7 +195,6 @@ define('forum/topic', dependencies, function(pagination, infinitescroll, threadT
});
}
function updateTopicTitle() {
if($(window).scrollTop() > 50) {
$('.header-topic-title').find('span').text(ajaxify.variables.get('topic_name')).show();
@@ -442,6 +441,7 @@ define('forum/topic', dependencies, function(pagination, infinitescroll, threadT
});
hidePostToolsForDeletedPosts();
} else {
socket.emit('topics.markAsRead', [tid]);
navigator.update();
done();
}