diff options
author | dzwdz | 2025-02-21 04:11:32 +0100 |
---|---|---|
committer | dzwdz | 2025-02-21 04:11:32 +0100 |
commit | 8d1c0517ceb870b38fb7c5a8c63a2e1023109760 (patch) | |
tree | 3d539cbc19d954fa41d642714a3b509c1ba4088e | |
parent | 2a5113d74a9154cdd974afcbb712369453b6fb35 (diff) |
fix broken collapsing of accounts
-rw-r--r-- | app.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -177,9 +177,9 @@ let DayDigest = { return m("details.acct", {key: user}, [ m("summary.acct__header", { onclick: (ev) => { - // Don't jump around when closing an acount which we see + // Don't jump around when closing an account which we see // only due to position:sticky; - let el = ev.target.parentElement; + let el = ev.currentTarget.parentElement; let el_y = el.getBoundingClientRect().top; if (el_y < 0) { window.scrollTo(window.scrollX, window.scrollY + el_y); |