Busfahrt: Neustart-Button + Onboarding-Doppelung abgesichert

- ggs-quick-intro: open() entfernt vorab alle vorhandenen Overlays (nie 2x).
- Busfahrt: Neustart-Button (btn-reset, location.reload mit Rueckfrage).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-08-25 16:54:34 +02:00
parent 8f89613eee
commit 496fc59c7b
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -158,7 +158,11 @@
function open() {
if (!_config) return;
close();
// Sicherheitsnetz: alle evtl. schon vorhandenen Overlays entfernen (nie doppelt)
var olds = document.querySelectorAll('.ggs-qi-back');
for (var i = 0; i < olds.length; i++) olds[i].remove();
_back = null;
document.removeEventListener('keydown', onKey);
_page = 1;
render();
}