mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 23:19:04 +08:00
Add flash animation when scrolling to post preview fixes #666 🤘
This commit is contained in:
parent
98ea4d1e71
commit
02bcb0f898
@ -55,7 +55,9 @@ class PostStream extends Component {
|
|||||||
return this.goToLast().then(() => {
|
return this.goToLast().then(() => {
|
||||||
$('html,body').stop(true).animate({
|
$('html,body').stop(true).animate({
|
||||||
scrollTop: $(document).height() - $(window).height()
|
scrollTop: $(document).height() - $(window).height()
|
||||||
}, 'fast');
|
}, 'fast', () => {
|
||||||
|
this.flashItem(this.$('.PostStream-item:last-child'));
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user