summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/components/post_view/components/post_list.jsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/webapp/components/post_view/components/post_list.jsx b/webapp/components/post_view/components/post_list.jsx
index a5369454d..496f39334 100644
--- a/webapp/components/post_view/components/post_list.jsx
+++ b/webapp/components/post_view/components/post_list.jsx
@@ -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() {