mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2025-09-08 06:58:43 +00:00
updated mobile sidebar
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
// js/sidebar.js
|
// sidebar.js
|
||||||
import { setHashView } from "./index.js"; // <--- or wherever you put it
|
import { setHashView } from "./index.js";
|
||||||
|
|
||||||
export function setupSidebarNavigation() {
|
export function setupSidebarNavigation() {
|
||||||
const sidebarLinks = document.querySelectorAll('#sidebar a[href^="#view="]');
|
const sidebarLinks = document.querySelectorAll('#sidebar a[href^="#view="]');
|
||||||
@@ -13,9 +13,17 @@ export function setupSidebarNavigation() {
|
|||||||
if (!match) return;
|
if (!match) return;
|
||||||
|
|
||||||
const viewName = match[1]; // "about", "ipns", etc.
|
const viewName = match[1]; // "about", "ipns", etc.
|
||||||
setHashView(viewName);
|
setHashView(viewName); // This changes the hash and loads the view.
|
||||||
// That removes ?modal=, ?v=, sets #view=viewName,
|
|
||||||
// and triggers handleHashChange() automatically
|
// --- NEW: if on mobile, close the sidebar automatically. ---
|
||||||
|
if (window.innerWidth < 768) {
|
||||||
|
const sidebar = document.getElementById("sidebar");
|
||||||
|
const app = document.getElementById("app");
|
||||||
|
if (sidebar && app) {
|
||||||
|
sidebar.classList.remove("sidebar-open");
|
||||||
|
app.classList.remove("sidebar-open");
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user