From 070c95d8de50b6334c5ed1738fa41de0e23546d5 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 25 Nov 2013 16:38:45 -0500 Subject: [PATCH] fixed regression from main_posts deprecation - bottom post bar restored --- public/src/forum/topic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/topic.js b/public/src/forum/topic.js index 3ef3cc6d1f..0a3b188f04 100644 --- a/public/src/forum/topic.js +++ b/public/src/forum/topic.js @@ -36,7 +36,7 @@ define(function() { app.enterRoom('topic_' + tid); - if($('#post-container .posts').length > 1) { + if($('#post-container .posts .post-row').length > 1) { $('.topic-main-buttons').removeClass('hide').parent().removeClass('hide'); }