mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[feature/frontend] Hide "engagement" stats, edits, and other info under a little drop down to unclutter status info bar (#4021)
* dick about with stats a bit * more dicking abuot * lil tweaks * more about-dicking * weee * comments * fixie uppie
This commit is contained in:
@ -338,3 +338,25 @@ Array.from(document.getElementsByTagName('time')).forEach(timeTag => {
|
||||
timeTag.textContent = dateTimeFormat.format(date);
|
||||
}
|
||||
});
|
||||
|
||||
// When clicking anywhere that's not an open
|
||||
// stats-info-more-content details dropdown,
|
||||
// close that open dropdown.
|
||||
document.body.addEventListener("click", (e) => {
|
||||
const openStats = document.querySelector("details.stats-more-info[open]");
|
||||
if (!openStats) {
|
||||
// No open stats
|
||||
// details element.
|
||||
return;
|
||||
}
|
||||
|
||||
if (openStats.contains(e.target)) {
|
||||
// Click is within stats
|
||||
// element, leave it alone.
|
||||
return;
|
||||
}
|
||||
|
||||
// Click was outside of
|
||||
// stats elements, close it.
|
||||
openStats.removeAttribute("open");
|
||||
});
|
||||
|
Reference in New Issue
Block a user