top of page
bottom of page
document.addEventListener("keydown", function (event) {
if (
event.key === "Escape" &&
banner.classList.contains("mdb-cookie-open") &&
getConsent()
) {
closeSettings();
}
});
// Cookie settings no longer open automatically.
// Visitors can open them by clicking the cookie icon.
}
if (document.readyState === "loading") {
document.addEventListener(
"DOMContentLoaded",
initialiseCookieSettings
);
} else {
initialiseCookieSettings();
}
})();