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;
|
if ($post.length === 0 || isElementInViewport($post)) return;
|
||||||
|
|
||||||
$("body").animate({ scrollTop: $post.offset().top }, 1000);
|
$("html, body").animate({ scrollTop: $post.offset().top }, 1000);
|
||||||
}, 500),
|
}, 500),
|
||||||
|
|
||||||
unsubscribe() {
|
unsubscribe() {
|
||||||
|
|
Loading…
Reference in New Issue