[static] add shm_log js function available early in page load

This commit is contained in:
Shish 2024-01-01 20:15:34 +00:00
parent 509f8eee3e
commit 8755298ee9

View file

@ -4,3 +4,13 @@ function shm_cookie_set(name, value) {
function shm_cookie_get(name) {
return Cookies.get(name);
}
function shm_log(...message) {
window.dispatchEvent(new CustomEvent("shm_log", {detail: {message: message}}));
}
window.addEventListener("shm_log", function (e) {
console.log(...e.detail.message);
});
window.addEventListener("error", function (e) {
shm_log("Window error:", e.error);
});