Fix scrolling to first post not working

This commit is contained in:
Toby Zerner 2015-06-11 18:39:36 +09:30
parent 548f2879de
commit 914528d6c4

View File

@ -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);
}
/**