diff --git a/public/src/client/topic/posts.js b/public/src/client/topic/posts.js index aaf188c591..c656b899a2 100644 --- a/public/src/client/topic/posts.js +++ b/public/src/client/topic/posts.js @@ -345,10 +345,11 @@ define('forum/topic/posts', [ Posts.showBottomPostBar = function() { var mainPost = components.get('post', 'index', 0); + var placeHolder = $('.post-bar-placeholder'); var posts = $('[component="post"]'); - if (!!mainPost.length && posts.length > 1 && $('.post-bar').length < 2 && $('.post-bar-placeholder').length) { - $('.post-bar').clone().appendTo(mainPost); - $('.post-bar-placeholder').remove(); + if (!!mainPost.length && posts.length > 1 && $('.post-bar').length < 2 && placeHolder.length) { + $('.post-bar').clone().insertAfter(placeHolder); + placeHolder.remove(); } else if (mainPost.length && posts.length < 2) { mainPost.find('.post-bar').remove(); }