diff --git a/lyra/web/static/index.html b/lyra/web/static/index.html index a418060..8c73e65 100644 --- a/lyra/web/static/index.html +++ b/lyra/web/static/index.html @@ -35,7 +35,10 @@

Actions

- + + + + @@ -779,6 +782,17 @@ localStorage.setItem("thinkingPanelCollapsed", "false"); }); + // Mobile nav to the full-page views (log / mind / journal). + document.getElementById("mobileFullLogBtn").addEventListener("click", () => { + closeMobileMenu(); window.location.href = "/logs"; + }); + document.getElementById("mobileMindBtn").addEventListener("click", () => { + closeMobileMenu(); window.location.href = "/self"; + }); + document.getElementById("mobileJournalBtn").addEventListener("click", () => { + closeMobileMenu(); window.location.href = "/journal"; + }); + // Connect to the global live log on page load. connectThinkingStream();