This commit is contained in:
barisusakli
2015-10-04 01:13:47 -04:00
parent 3be3ed4eb5
commit 0b26cfdd43
2 changed files with 7 additions and 6 deletions

View File

@@ -88,7 +88,7 @@ define('forum/topic/posts', [
}
function removeAlreadyAddedPosts() {
var newPosts = components.get('topic').find('[data-index][data-index!="0"].new');
var newPosts = $('[component="post"].new');
if (newPosts.length === data.posts.length) {
var allSamePids = true;
@@ -117,7 +117,7 @@ define('forum/topic/posts', [
}
data.posts = data.posts.filter(function(post) {
return components.get('post', 'pid', post.pid).length === 0;
return $('[component="post"][data-pid="' + post.pid + '"]').length === 0;
});
}
@@ -157,7 +157,7 @@ define('forum/topic/posts', [
components.get('topic').append(html);
}
infinitescroll.removeExtra(components.get('post'), direction, 40);
infinitescroll.removeExtra($('[component="post"]'), direction, 40);
$(window).trigger('action:posts.loaded', {posts: data.posts});
@@ -207,7 +207,7 @@ define('forum/topic/posts', [
};
Posts.processPage = function(posts) {
app.createUserTooltips();
app.createUserTooltips(posts);
app.replaceSelfLinks(posts.find('a'));
utils.addCommasToNumbers(posts.find('.formatted-number'));
utils.makeNumbersHumanReadable(posts.find('.human-readable-number'));