Tourismusregion: eigene SVG-Icons (Log/Anim/Kamera) + Tempo ganz links

- Komponente: Tempo-Steuerung an erste Aktions-Position (ganz links),
  Rest ans Ende.
- Region: 🔔/🐢/🎯 durch eigene SVG-Icons ersetzt (logBadge erhalten).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-08-25 19:34:02 +02:00
parent 6009eabca1
commit 2e9ad6a83f
2 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -302,8 +302,11 @@
/* --- 7) Aktionen in Mockup-Reihenfolge sortieren ---------- */
if (actions) {
var order = [tempoWrap, musicWrap, soundBtn, resetBtn, helpBtn, q('.ggs-glossar')];
for (var o = 0; o < order.length; o++) if (order[o]) actions.appendChild(order[o]);
// Standard-Steuerung ans Ende (Musik · Ton · Neustart · Hilfe · Glossar)
var tail = [musicWrap, soundBtn, resetBtn, helpBtn, q('.ggs-glossar')];
for (var o = 0; o < tail.length; o++) if (tail[o]) actions.appendChild(tail[o]);
// Tempo IMMER ganz links (erste Position der Aktionen)
if (tempoWrap) actions.insertBefore(tempoWrap, actions.firstChild);
}
/* --- 8) Panels bei Außen-Klick schließen ------------------ */