From b0b5ff1b0f0a1422e85e7059df598e2b89bd657e Mon Sep 17 00:00:00 2001 From: Ondřej Hruška Date: Wed, 11 Oct 2017 21:49:22 +0200 Subject: workaround for scrollIntoView bug ??? --- app/javascript/mastodon/features/status/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app/javascript') diff --git a/app/javascript/mastodon/features/status/index.js b/app/javascript/mastodon/features/status/index.js index 656226fca..c40630a0a 100644 --- a/app/javascript/mastodon/features/status/index.js +++ b/app/javascript/mastodon/features/status/index.js @@ -252,8 +252,10 @@ export default class Status extends ImmutablePureComponent { if (status && ancestorsIds && ancestorsIds.size > 0) { const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1]; - element.scrollIntoView(true); - this._scrolledIntoView = true; + if (element) { + element.scrollIntoView(true); + this._scrolledIntoView = true; + } } } -- cgit