show bottom post bar after new post, fixed the insertion of new posts

v1.18.x
Baris Usakli 11 years ago
parent 90a12c3253
commit 720711756f

@ -3,6 +3,12 @@ define(function() {
infiniteLoaderActive = false;
function showBottomPostBar() {
if($('#post-container .post-row').length > 1) {
$('.topic-main-buttons').removeClass('hide').parent().removeClass('hide');
}
}
Topic.init = function() {
var expose_tools = templates.get('expose_tools'),
tid = templates.get('topic_id'),
@ -24,16 +30,13 @@ define(function() {
}
}
jQuery('document').ready(function() {
app.addCommasToNumbers();
app.enterRoom('topic_' + tid);
if($('#post-container .post-row').length > 1) {
$('.topic-main-buttons').removeClass('hide').parent().removeClass('hide');
}
showBottomPostBar();
// Resetting thread state
if (thread_state.locked === '1') set_locked_state(true);
@ -883,7 +886,7 @@ define(function() {
$('#post-container li[data-pid]').each(function() {
if(parseInt(firstPid, 10) > parseInt($(this).attr('data-pid'), 10)) {
after = $(this);
if(after.hasClass('posts')) {
if(after.next().length && after.next().hasClass('post-bar')) {
after = after.next();
}
} else {
@ -926,6 +929,7 @@ define(function() {
$('span.timeago').timeago();
$('.post-content img').addClass('img-responsive');
updatePostCount();
showBottomPostBar();
});
}

Loading…
Cancel
Save