[Glitch] Defer scrollIntoView after DOM is drawn

staging
Thibaut Girka 2018-08-17 13:39:06 +02:00 committed by ThibG
parent 50cd70b3e9
commit 4a6bc2482a
1 changed files with 3 additions and 3 deletions

View File

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