mirror of
https://github.com/flarum/framework.git
synced 2024-12-13 07:03:35 +08:00
Fix scrolling to first post not working
This commit is contained in:
parent
548f2879de
commit
914528d6c4
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user