Parcourir la source

Defer scrollIntoView after DOM is drawn (fixes #8239) (#8242)

master
ThibG il y a 5 ans
committed by Eugen Rochko
Parent
révision
4601a58ac2
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      app/javascript/mastodon/features/status/index.js

+ 3
- 1
app/javascript/mastodon/features/status/index.js Voir le fichier

@@ -355,7 +355,9 @@ export default class Status extends ImmutablePureComponent {
if (status && ancestorsIds && ancestorsIds.size > 0) {
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1];

element.scrollIntoView(true);
window.requestAnimationFrame(() => {
element.scrollIntoView(true);
});
this._scrolledIntoView = true;
}
}


Chargement…
Annuler
Enregistrer