1
0
mirror of https://github.com/flarum/core.git synced 2025-06-28 05:34:19 +02:00

Merge branch 'replay-animation' of https://github.com/sijad/core

This commit is contained in:
Toby Zerner
2016-01-12 19:14:07 +10:30

View File

@ -55,7 +55,9 @@ class PostStream extends Component {
return this.goToLast().then(() => {
$('html,body').stop(true).animate({
scrollTop: $(document).height() - $(window).height()
}, 'fast');
}, 'fast', () => {
this.flashItem(this.$('.PostStream-item:last-child'));
});
});
}