From 070d8fb04d18ee33d654e6ea4004ce58f211856b Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 11 Jun 2015 18:39:36 +0930 Subject: [PATCH] Fix scrolling to first post not working --- js/forum/src/components/post-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/forum/src/components/post-stream.js b/js/forum/src/components/post-stream.js index 6a3e6049d..35dd23f1d 100644 --- a/js/forum/src/components/post-stream.js +++ b/js/forum/src/components/post-stream.js @@ -422,7 +422,7 @@ class PostStream extends mixin(Component, evented) { scrollToIndex(index, noAnimation, bottom) { var $item = this.$('.item[data-index='+index+']'); - return this.scrollToItem($item, noAnimation, true, true); + return this.scrollToItem($item, noAnimation, true, bottom); } /**