workaround for scrollIntoView bug ???

signup-info-prompt
Ondřej Hruška 2017-10-11 21:49:22 +02:00
parent bd51a16150
commit b0b5ff1b0f
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
1 changed files with 4 additions and 2 deletions

View File

@ -252,10 +252,12 @@ export default class Status extends ImmutablePureComponent {
if (status && ancestorsIds && ancestorsIds.size > 0) { if (status && ancestorsIds && ancestorsIds.size > 0) {
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1]; const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1];
if (element) {
element.scrollIntoView(true); element.scrollIntoView(true);
this._scrolledIntoView = true; this._scrolledIntoView = true;
} }
} }
}
render () { render () {
let ancestors, descendants; let ancestors, descendants;