mirror of
https://github.com/flarum/framework.git
synced 2025-05-24 07:39:56 +08:00
Fix scrolling to first post not working
This commit is contained in:
@ -422,7 +422,7 @@ class PostStream extends mixin(Component, evented) {
|
|||||||
scrollToIndex(index, noAnimation, bottom) {
|
scrollToIndex(index, noAnimation, bottom) {
|
||||||
var $item = this.$('.item[data-index='+index+']');
|
var $item = this.$('.item[data-index='+index+']');
|
||||||
|
|
||||||
return this.scrollToItem($item, noAnimation, true, true);
|
return this.scrollToItem($item, noAnimation, true, bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user