mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-16 18:56:15 +01:00
started #1807
This commit is contained in:
@@ -38,7 +38,8 @@ define('forum/chats', ['string', 'sounds'], function(S, sounds) {
|
||||
|
||||
Chats.addEventListeners = function() {
|
||||
var inputEl = $('.chat-input'),
|
||||
sendEl = $('.expanded-chat button[data-action="send"]');
|
||||
sendEl = $('.expanded-chat button[data-action="send"]'),
|
||||
popoutEl = $('[data-action="pop-out"]');
|
||||
|
||||
$('.chats-list').on('click', 'li', function(e) {
|
||||
ajaxify.go('chats/' + utils.slugify($(this).attr('data-username')));
|
||||
@@ -62,6 +63,11 @@ define('forum/chats', ['string', 'sounds'], function(S, sounds) {
|
||||
Chats.sendMessage(Chats.getRecipientUid(), inputEl);
|
||||
return false;
|
||||
});
|
||||
|
||||
popoutEl.on('click', function() {
|
||||
app.openChat($('.expanded-chat').attr('data-username'), Chats.getRecipientUid());
|
||||
ajaxify.go('chats');
|
||||
});
|
||||
};
|
||||
|
||||
Chats.addGlobalEventListeners = function() {
|
||||
@@ -120,7 +126,7 @@ define('forum/chats', ['string', 'sounds'], function(S, sounds) {
|
||||
|
||||
messagesList.height(viewportHeight-(fromTop+inputHeight+(margin*4)));
|
||||
}
|
||||
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user