Add flash animation when scrolling to post preview fixes #666 🤘

This commit is contained in:
Sajjad Hasehmian 2016-01-12 10:58:19 +03:30
parent 5e1e5b176d
commit 746fc9ea14

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'));
});
});
}