mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 12:36:02 +01:00
dont make extra socket call on new post and IS
This commit is contained in:
@@ -15,6 +15,8 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
|
||||
share.addShareHandlers(topicName);
|
||||
|
||||
addVoteHandler();
|
||||
|
||||
PostTools.updatePostCount(ajaxify.data.postcount);
|
||||
};
|
||||
|
||||
PostTools.toggle = function(pid, isDeleted) {
|
||||
@@ -28,15 +30,11 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
|
||||
postEl.find('[component="post/purge"]').toggleClass('hidden', !isDeleted);
|
||||
};
|
||||
|
||||
PostTools.updatePostCount = function() {
|
||||
socket.emit('topics.postcount', ajaxify.data.tid, function(err, postCount) {
|
||||
if (!err) {
|
||||
var postCountEl = components.get('topic/post-count');
|
||||
postCountEl.html(postCount).attr('title', postCount);
|
||||
utils.makeNumbersHumanReadable(postCountEl);
|
||||
navigator.setCount(postCount);
|
||||
}
|
||||
});
|
||||
PostTools.updatePostCount = function(postCount) {
|
||||
var postCountEl = components.get('topic/post-count');
|
||||
postCountEl.html(postCount).attr('title', postCount);
|
||||
utils.makeNumbersHumanReadable(postCountEl);
|
||||
navigator.setCount(postCount);
|
||||
};
|
||||
|
||||
function addVoteHandler() {
|
||||
|
||||
Reference in New Issue
Block a user