mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 17:18:19 +08:00
FIX: Automatic scrolling in PM not working.
See https://stackoverflow.com/questions/18779708/scrolltop-with-animate-not-working
This commit is contained in:
parent
7b7c86461f
commit
caeb035b61
|
@ -1301,7 +1301,7 @@ export default Ember.Controller.extend(bufferedProperty("model"), {
|
|||
|
||||
if ($post.length === 0 || isElementInViewport($post)) return;
|
||||
|
||||
$("body").animate({ scrollTop: $post.offset().top }, 1000);
|
||||
$("html, body").animate({ scrollTop: $post.offset().top }, 1000);
|
||||
}, 500),
|
||||
|
||||
unsubscribe() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user