workaround for scrollIntoView bug ???

master
Ondřej Hruška 7 years ago
parent bd51a16150
commit b0b5ff1b0f
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
  1. 6
      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;
}
}
}

Loading…
Cancel
Save