diff --git a/public/src/forum/topic.js b/public/src/forum/topic.js index dde3643777..77865e651e 100644 --- a/public/src/forum/topic.js +++ b/public/src/forum/topic.js @@ -1217,15 +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')) { + el.parentNode.removeChild(el); + } + }); + onNewPostsLoaded(data.posts); }); } function parseAndTranslatePosts(data, callback) { var html = templates.prepare(templates['topic'].blocks['posts']).parse(data); - var regexp = new RegExp("([\\s\\S]*?)", 'g'); - html = html.replace(regexp, ''); - translator.translate(html, callback); }