const __APP_VERSION__ = "__APP_VERSION"; const __APP_BUILD_TIME__ = __APP_BUILD_TIME; import "./styles.css"; import Typed from "typed.js"; window.addEventListener("load", (_ev) => { new Typed(document.querySelector("description") ?? "description", { stringsElement: "#description-list", shuffle: true, typeSpeed: 60, backDelay: 2000, fadeOut: true, loop: true, showCursor: true, smartBackspace: true, }); document.querySelectorAll("[alt]").forEach((Elem) => { const tooltip = document.createElement("tooltiptext"); tooltip.innerText = Elem.getAttribute("alt") ?? ""; Elem.appendChild(tooltip); }); // @ts-expect-error document.querySelector( "#footer > div" ).innerHTML += `Update Commit Latest Update`; if ("serviceWorker" in navigator) { navigator.serviceWorker .register("./sw.js", { scope: "/", }) .then(function (registration) { console.log( "ServiceWorker registration successful with scope: ", registration.scope ); }) .catch(function (err) { console.warn("ServiceWorker registration failed: ", err); }); let refreshing = false; navigator.serviceWorker.addEventListener("controllerchange", () => { if (refreshing) { return; } refreshing = true; window.location.reload(); }); } });