Close popups with escape key

This commit is contained in:
missionfloyd
2023-11-30 22:36:12 -07:00
committed by GitHub
parent c2ed413203
commit 01c8f1803a

View File

@@ -392,3 +392,9 @@ function extraNetworksRefreshSingleCard(page, tabname, name) {
}
});
}
window.addEventListener("keydown", function(event) {
if (event.key == "Escape") {
closePopup();
}
});