PLT-6294 Fixed iOS not scrolling to bottom of post list (#6077)
Этот коммит содержится в:
коммит произвёл
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() {
|
||||
|
||||
Ссылка в новой задаче
Block a user