diff --git a/framework/core/js/forum/src/components/PostStream.js b/framework/core/js/forum/src/components/PostStream.js index d18cec577..5fc1cff41 100644 --- a/framework/core/js/forum/src/components/PostStream.js +++ b/framework/core/js/forum/src/components/PostStream.js @@ -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')); + }); }); }