tangled
alpha
login
or
join now
mackuba.eu
/
skythread
14
fork
atom
Thread viewer for Bluesky
14
fork
atom
overview
issues
pulls
pipelines
removed unnecessary optimization
mackuba.eu
3 months ago
19082e45
6d57f903
+1
-3
1 changed file
expand all
collapse all
unified
split
src
components
AccountMenu.svelte
+1
-3
src/components/AccountMenu.svelte
···
11
11
let html = document.body.parentNode;
12
12
13
13
html.addEventListener('click', (e) => {
14
14
-
if (menuVisible) {
15
15
-
menuVisible = false;
16
16
-
}
14
14
+
menuVisible = false;
17
15
});
18
16
});
19
17