From 5a695ce07c6e45a1f7690d51b00cc3f7660f691b Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Wed, 25 Mar 2026 19:17:07 +0100 Subject: [PATCH] fix(tutorial): Maussimulation Schritt 10 (E-Mail-Benachrichtigungen) Cursor bewegt sich jetzt zum sichtbaren Toggle-Switch statt zum versteckten Checkbox-Input. Klick-Animation vor jedem Toggle. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/static/js/tutorial.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/static/js/tutorial.js b/src/static/js/tutorial.js index d8bf307..1d24ff2 100644 --- a/src/static/js/tutorial.js +++ b/src/static/js/tutorial.js @@ -2268,12 +2268,14 @@ const Tutorial = { if (!cb) continue; this._highlightSub(checks[i]); if (pos) { - pos = await this._cursorToElement(checks[i], pos.x, pos.y); + pos = await this._cursorToToggle(checks[i], pos.x, pos.y); } else { - pos = await this._cursorToElement(checks[i]); + pos = await this._cursorToToggle(checks[i]); } + await this._wait(400); + await this._clickAtCursor(); cb.checked = true; - await this._wait(1000); + await this._wait(800); this._clearSubHighlights(); }