fix: SEO + accessibility + consistency fixes (BUG-056,062,063,064,065,066,067,068)
All checks were successful
Build & Deploy to Staging / Build & Deploy to Staging (push) Successful in 11m8s

This commit is contained in:
OpenClaw Deployer 2026-02-19 08:39:56 +00:00
parent c6af7cd864
commit fb05989b3b
3 changed files with 28 additions and 19 deletions

View file

@ -304,6 +304,11 @@ async function checkout() {
}
document.addEventListener('DOMContentLoaded', function() {
// BUG-068: Open change email modal if navigated via #change-email hash
if (window.location.hash === '#change-email') {
openEmailChange();
}
document.getElementById('btn-signup').addEventListener('click', openSignup);
document.getElementById('btn-signup-2').addEventListener('click', openSignup);
document.getElementById('btn-checkout').addEventListener('click', checkout);