This commit is contained in:
Julian Lam
2014-02-10 11:54:47 -05:00
parent 92d029f072
commit 5b8585fafb
2 changed files with 12 additions and 4 deletions

View File

@@ -1217,12 +1217,19 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
.hide()
.fadeIn('slow');
// Remove the extra post-bar that gets added
$('.posts').find('.post-bar[data-index]').each(function(idx, el) {
if (el.getAttribute('data-index')) {
// Remove the extra post-bar and "follow" button that gets added
var postsEl = $('.posts');
postsEl.find('.post-bar').each(function(idx, el) {
if (idx !== 0) {
el.parentNode.removeChild(el);
}
});
postsEl.find('li.post-row[data-index]').each(function(idx, el) {
followEl = el.querySelector('.follow');
if (idx !== 0 && followEl) {
followEl.parentNode.removeChild(followEl);
}
});
onNewPostsLoaded(data.posts);
});