fixed height detection in chat modal

v1.18.x
Julian Lam 7 years ago
parent d0a1eb61bc
commit d8b67606bc

@ -324,7 +324,7 @@ define('chat', [
module.enableMobileBehaviour = function (modalEl) { module.enableMobileBehaviour = function (modalEl) {
app.toggleNavbar(false); app.toggleNavbar(false);
modalEl.attr('data-mobile', '1'); modalEl.attr('data-mobile', '1');
var messagesEl = modalEl.find('.chat-content'); var messagesEl = modalEl.find('.modal-body');
messagesEl.css('height', module.calculateChatListHeight(modalEl)); messagesEl.css('height', module.calculateChatListHeight(modalEl));
$(window).on('resize', function () { $(window).on('resize', function () {

Loading…
Cancel
Save