nelle-observer/astro/public/scripts/sn.js

6 lines
138 B
JavaScript
Raw Normal View History

2024-08-27 01:16:24 -06:00
document.addEventListener("keydown", (event) => {
if (event.ctrlKey && event.key === "`") {
window.location.replace("/sn");
}
});