This commit is contained in:
Julian Lam
2014-07-09 10:55:22 -04:00
parent dae2e14aac
commit cd8c1eeff6
2 changed files with 10 additions and 2 deletions

View File

@@ -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;
};