feat: #7627, close chat on ajaxify on mobile

v1.18.x
Barış Soner Uşaklı 6 years ago
parent 64679b37cc
commit 6cebc7f069

@ -315,12 +315,17 @@ define('chat', [
modalEl.attr('data-mobile', '1'); modalEl.attr('data-mobile', '1');
var messagesEl = modalEl.find('.modal-body'); var messagesEl = modalEl.find('.modal-body');
messagesEl.css('height', module.calculateChatListHeight(modalEl)); messagesEl.css('height', module.calculateChatListHeight(modalEl));
function resize() {
$(window).on('resize', function () {
messagesEl.css('height', module.calculateChatListHeight(modalEl)); messagesEl.css('height', module.calculateChatListHeight(modalEl));
require(['forum/chats/messages'], function (ChatsMessages) { require(['forum/chats/messages'], function (ChatsMessages) {
ChatsMessages.scrollToBottom(modalEl.find('.chat-content')); ChatsMessages.scrollToBottom(modalEl.find('.chat-content'));
}); });
}
$(window).on('resize', resize);
$(window).one('action:ajaxify.start', function () {
module.close(modalEl);
$(window).off('resize', resize);
}); });
}; };

Loading…
Cancel
Save