scrolling

This commit is contained in:
Henry Jameson 2026-07-23 13:51:41 +03:00
commit 749d42978f
3 changed files with 24 additions and 4 deletions

View file

@ -540,10 +540,9 @@ const Status = {
toggleThreadDisplay() {
this.controlledToggleThreadDisplay()
},
scrollIfFocused(focusedId) {
scrollIfFocused(focused) {
if (this.$el.getBoundingClientRect == null) return
const id = focusedId
if (this.status.id === id) {
if (focused) {
const rect = this.$el.getBoundingClientRect()
if (rect.top < 100) {
// Post is above screen, match its top to screen top