Add chat scroll to bottom when opening it

This commit is contained in:
ClemDee
2019-05-29 12:22:18 +02:00
parent 62eb623f49
commit bfba5ff33b
2 changed files with 13 additions and 5 deletions

View File

@@ -486,6 +486,12 @@ MessengerUI, Messages) {
var show = function () {
if (Bar.isEmbed) { $content.hide(); return; }
$content.show();
// scroll down chat
var $messagebox = $content.find('.cp-app-contacts-messages');
if ($messagebox.length) {
$messagebox.scrollTop($messagebox[0].scrollHeight);
}
$button.addClass('cp-toolbar-button-active');
config.$contentContainer.addClass('cp-chat-visible');
$button.removeClass('cp-toolbar-notification');