removed regex removal of @first block on infinite post load in favour of DOM method

v1.18.x
Julian Lam 11 years ago
parent ff9d7c6c24
commit 92d029f072

@ -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]*IF @first[\\s]*-->([\\s\\S]*?)<!--[\\s]*ENDIF @first[\\s]*-->", 'g');
html = html.replace(regexp, '');
translator.translate(html, callback);
}

Loading…
Cancel
Save