fix(ui): close About modal on ESC key press

Add keydown listener for Escape to dismiss the About OxiCloud
modal overlay, matching standard modal behavior.

Fixes #98
This commit is contained in:
Dionisio
2026-02-13 22:38:26 +01:00
parent c7fe075e7f
commit 6f3baabbb2
+5
View File
@@ -242,6 +242,11 @@ function setupUserMenu() {
aboutOverlay.classList.remove('show');
}
});
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape' && aboutOverlay.classList.contains('show')) {
aboutOverlay.classList.remove('show');
}
});
}
// Fetch version from backend (centralized in Cargo.toml)