From 914528d6c4ce2ecdc0e342260fafbd19607a4e12 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 --- framework/core/js/forum/src/components/post-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/post-stream.js b/framework/core/js/forum/src/components/post-stream.js index 6a3e6049d..35dd23f1d 100644 --- a/framework/core/js/forum/src/components/post-stream.js +++ b/framework/core/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); } /**