Fix: Burger-Hinweis auf Willkommensseite nur auf Mobile anzeigen

Klasse mobile-only ergänzt, damit der Hinweis ab 768px (Desktop-Sidebar sichtbar) ausgeblendet wird. SW by-v202, APP_VER 169.
This commit is contained in:
rene 2026-04-18 13:51:24 +02:00
parent e97bd744e9
commit 80e3f0dc0d
3 changed files with 25 additions and 3 deletions

View file

@ -3,7 +3,7 @@
Router, State-Management, Navigation, Initialisierung.
============================================================ */
const APP_VER = '168'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VER = '169'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const App = (() => {
@ -669,7 +669,7 @@ const App = (() => {
hashParams[k] = isNaN(v) ? v : Number(v);
});
}
const startPage = (hashPage && pages[hashPage]) ? hashPage : 'diary';
const startPage = (hashPage && pages[hashPage]) ? hashPage : 'welcome';
navigate(startPage, false, hashParams);
}