From 02bcb0f898fd092755fd752b389c22f45c2956c5 Mon Sep 17 00:00:00 2001 From: Sajjad Hasehmian Date: Tue, 12 Jan 2016 10:58:19 +0330 Subject: [PATCH] Add flash animation when scrolling to post preview fixes #666 :metal: --- js/forum/src/components/PostStream.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/forum/src/components/PostStream.js b/js/forum/src/components/PostStream.js index d18cec577..5fc1cff41 100644 --- a/js/forum/src/components/PostStream.js +++ b/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')); + }); }); }