This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/src/articles/static/edit-keymap.js

23 lines
631 B
JavaScript

"use strict";
function bindKey() {
const adminLinkElement = document.querySelector("a#admin-link");
if (adminLinkElement === undefined || adminLinkElement === null) {
return;
}
const adminLocation = adminLinkElement.href;
document.addEventListener("keydown", function (event) {
if (event.code === "KeyE") {
window.location = adminLocation;
}
});
}
((readyState) => {
if (readyState === "interactive") {
bindKey();
} else if (readyState === "loading") {
window.addEventListener("DOMContentLoaded", bindKey, false);
}
})(document.readyState);