From acb98238d7d7f9fb6b0d75e067049932df96e700 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 3 Jan 2026 21:21:39 -0800 Subject: [PATCH] Scroll confirmation bar into view after Stripe redirect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- static/afac26.html | 1 + 1 file changed, 1 insertion(+) diff --git a/static/afac26.html b/static/afac26.html index dd9fdfc..d3bdf9d 100644 --- a/static/afac26.html +++ b/static/afac26.html @@ -214,6 +214,7 @@ const numPeopleParam = params.get('num_people'); if (donatedParam || numPeopleParam) { showConfirmation(parseInt(numPeopleParam) || 0, donatedParam ? parseFloat(donatedParam) : null); + document.getElementById('thank-you').scrollIntoView({ behavior: 'smooth', block: 'center' }); history.replaceState({}, '', location.pathname); }