mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-17 03:01:08 +01:00
removed console.log, fixing language key reference error #1788
This commit is contained in:
@@ -77,7 +77,7 @@ define('forum/chats', ['string', 'sounds'], function(S, sounds) {
|
||||
});
|
||||
} else {
|
||||
$('.chats-list li[data-uid="' + data.withUid + '"]').addClass('unread');
|
||||
app.alternatingTitle('[[modules:chat.user_has_messaged_you, ' + data.message.username + ']]');
|
||||
app.alternatingTitle('[[modules:chat.user_has_messaged_you, ' + data.message.fromUser.username + ']]');
|
||||
}
|
||||
});
|
||||
|
||||
@@ -132,7 +132,6 @@ define('forum/chats', ['string', 'sounds'], function(S, sounds) {
|
||||
};
|
||||
|
||||
Chats.setActive = function() {
|
||||
console.log(Chats.getRecipientUid());
|
||||
$('.chats-list li').removeClass('bg-primary');
|
||||
$('.chats-list li[data-uid="' + Chats.getRecipientUid() + '"]').addClass('bg-primary');
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user