Use ES6 for custom script

This commit is contained in:
Gabriel Augendre 2021-03-21 15:39:31 +01:00
parent 5c32de523a
commit 4cbdb0bc54

View file

@ -1,11 +1,10 @@
'use strict';
// Explicitely not using ES 6 features because the compressor doesn't support them.
window.onload = function () {
var adminLinkElement = document.querySelector("a#admin-link");
const adminLinkElement = document.querySelector("a#admin-link");
if (adminLinkElement === undefined || adminLinkElement === null) {
return;
}
var adminLocation = adminLinkElement.href;
const adminLocation = adminLinkElement.href;
document.addEventListener("keydown", function(event) {
if (event.code === "KeyE") {
window.location = adminLocation;