PLT-6294 Fixed iOS not scrolling to bottom of post list (#6077)

Этот коммит содержится в:
Harrison Healey
2017-04-12 05:40:21 -04:00
коммит произвёл George Goldberg
родитель b3305d82eb
Коммит 5d145d72c8

Просмотреть файл

@@ -489,8 +489,14 @@ export default class PostList extends React.Component {
}
scrollToBottomAnimated() {
var postList = $(this.refs.postlist);
postList.animate({scrollTop: this.refs.postlist.scrollHeight}, '500');
if (UserAgent.isIos()) {
// JQuery animation doesn't work on iOS
this.refs.postlist.scrollTop = this.refs.postlist.scrollHeight;
} else {
var postList = $(this.refs.postlist);
postList.animate({scrollTop: this.refs.postlist.scrollHeight}, '500');
}
}
getArchivesIntroMessage() {