Fix for message box auto-sizing behavior on resize; menu z-index fix

pull/749/head
adambar 10 years ago
parent da1abd75bf
commit 9c563cf080

@ -52,6 +52,8 @@
this.$('.discussion-container').append(this.view.el);
this.view.render();
this.appWindow.contentWindow.addEventListener('resize', this.forceUpdateMessageFieldSize.bind(this));
setTimeout(function() {
this.view.scrollToBottom();
}.bind(this), 10);
@ -172,8 +174,7 @@
convo.sendMessage(message, attachments);
});
input.val("");
window.autosize.update(input);
this.updateMessageFieldSize(e);
this.forceUpdateMessageFieldSize(e);
this.fileInput.deleteFiles();
}
},
@ -213,6 +214,11 @@
$bottomBar.outerHeight($messageField.outerHeight() + 1);
var $bottomBarNewHeight = $bottomBar.outerHeight();
$discussionContainer.outerHeight($discussionContainerPrevHeight - ($bottomBarNewHeight - $bottomBarPrevHeight));
},
forceUpdateMessageFieldSize: function (event) {
window.autosize.update(this.$('.send-message'));
this.updateMessageFieldSize(event);
}
});
})();

@ -98,6 +98,7 @@ button.back {
display: none;
position: absolute;
color: $grey_d;
z-index: 1;
top: 100%;
left: 0;

@ -95,6 +95,7 @@ button.back {
display: none;
position: absolute;
color: #454545;
z-index: 1;
top: 100%;
left: 0;
margin: 0;

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save