close About Snapdrop page on Escape Keydown

This commit is contained in:
schlagmichdoch 2022-12-30 17:09:15 +01:00
parent a7a91df558
commit 009fcd7745

View file

@ -655,6 +655,13 @@ Events.on('load', () => {
animate(); animate();
}); });
// close About Snapdrop page on Escape
window.addEventListener("keydown", (e) => {
if (e.key === "Escape") {
window.location.hash = '#';
}
});
Notifications.PERMISSION_ERROR = ` Notifications.PERMISSION_ERROR = `
Notifications permission has been blocked Notifications permission has been blocked
as the user has dismissed the permission prompt several times. as the user has dismissed the permission prompt several times.