From cd2157e7fc91dcdc501d412e9c794790ad01834b Mon Sep 17 00:00:00 2001 From: serversdown Date: Wed, 17 Jun 2026 06:44:22 +0000 Subject: [PATCH] feat(web): add Full Log / Mind / Journal to the mobile menu The full-page log, read-her-mind, and journal links were only in the desktop header (hidden behind the hamburger on phones). Add them to the mobile slide-out menu so the phone has the extended log, her self-state, and her journal too. Co-Authored-By: Claude Opus 4.8 (1M context) --- lyra/web/static/index.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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();