|
|
@ -40,6 +40,8 @@ define('forum/topic/events', ['forum/topic/browsing', 'forum/topic/postTools', '
|
|
|
|
'posts.downvote': togglePostVote,
|
|
|
|
'posts.downvote': togglePostVote,
|
|
|
|
'posts.unvote': togglePostVote,
|
|
|
|
'posts.unvote': togglePostVote,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'event:new_notification': onNewNotification,
|
|
|
|
|
|
|
|
|
|
|
|
'event:topic.notifyTyping': onNotifyTyping,
|
|
|
|
'event:topic.notifyTyping': onNotifyTyping,
|
|
|
|
'event:topic.stopNotifyTyping': onStopNotifyTyping
|
|
|
|
'event:topic.stopNotifyTyping': onStopNotifyTyping
|
|
|
|
};
|
|
|
|
};
|
|
|
@ -184,6 +186,14 @@ define('forum/topic/events', ['forum/topic/browsing', 'forum/topic/postTools', '
|
|
|
|
post.find('.downvote').toggleClass('btn-primary downvoted', data.downvote);
|
|
|
|
post.find('.downvote').toggleClass('btn-primary downvoted', data.downvote);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function onNewNotification(data) {
|
|
|
|
|
|
|
|
var tid = ajaxify.variables.get('topic_id');
|
|
|
|
|
|
|
|
if (data && data.tid && parseInt(data.tid, 10) === parseInt(tid, 10)) {
|
|
|
|
|
|
|
|
socket.emit('topics.markTopicNotificationsRead', tid);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onNotifyTyping(data) {
|
|
|
|
function onNotifyTyping(data) {
|
|
|
|
var userEl = $('.thread_active_users [data-uid="' + data.uid + '"]');
|
|
|
|
var userEl = $('.thread_active_users [data-uid="' + data.uid + '"]');
|
|
|
|
userEl.addClass('replying');
|
|
|
|
userEl.addClass('replying');
|
|
|
|