[frio] Fix JS error in compose private message page

This commit is contained in:
Hypolite Petovan 2018-08-04 21:14:29 +02:00
parent 810c108297
commit ea09a51dff
1 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@
$('#mail-conversation').perfectScrollbar();
$('#message-preview').perfectScrollbar();
// Scroll to the bottom of the mail conversation.
$('#mail-conversation').scrollTop($('#mail-conversation')[0].scrollHeight);
var $el = $('#mail-conversation');
if ($el.length) {
$el.scrollTop($el.get(0).scrollHeight);
}
});
</script>