fix: ensure we are loading events properly during fsdb scan

fix: various styling issues on smaller screens
fix: map z-index
This commit is contained in:
Andy Burke 2026-02-24 15:54:56 -08:00
parent 873773bc91
commit 2d12104875
10 changed files with 126 additions and 38 deletions

View file

@ -8,6 +8,7 @@
});
APP.on( 'load', () => {
console.log( 'loaded' );
const tab_switchers = document.querySelectorAll(".tabswitch");
for (const tab_switch of tab_switchers) {
tab_switch.addEventListener("input", (event) => {
@ -15,7 +16,7 @@
const view = tab_selector.dataset.view;
if (view) {
window.location.hash = `/${view}${ document.body.dataset.channel ? `/channel/${ document.body.dataset.channel }` : '' }`;
window.location.hash = `/${view}`;
}
});
}