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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user