decreased full chat height by 1px

This commit is contained in:
Julian Lam
2018-01-18 11:41:28 -05:00
parent 457194b333
commit c20aca8933

View File

@@ -446,8 +446,8 @@ define('forum/chats', [
Chats.resizeMainWindow = function () {
var viewportHeight = $(window).height();
var fromTop = components.get('chat/main-wrapper').offset().top || components.get('chat/nav-wrapper').offset().top;
$('.chats-full').height(viewportHeight - fromTop - 1);
$('.chats-full').height(viewportHeight - fromTop);
Chats.setActive();
};