MOBILE-2431 chat: Scroll to bottom when receiving a beep

main
Albert Gasset 2018-06-19 11:12:52 +02:00
parent e286e93918
commit cbd1553438
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,10 @@ export class AddonModChatChatPage {
return this.chatProvider.getMessagesUserData(messagesInfo.messages, this.courseId).then((messages) => {
this.messages = this.messages.concat(messages);
if (messages.length) {
// New messages or beeps, scroll to bottom.
setTimeout(() => this.scrollToBottom());
}
});
});
}