ソースを参照

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

master
ThibG 5年前
committed by Eugen Rochko
コミット
4601a58ac2
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      app/javascript/mastodon/features/status/index.js

+ 3
- 1
app/javascript/mastodon/features/status/index.js ファイルの表示

@@ -355,7 +355,9 @@ 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];


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


読み込み中…
キャンセル
保存