a new start

This commit is contained in:
2025-10-25 12:39:30 +02:00
commit c97cadef78
726 changed files with 454051 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// `script[nomodule]` polyfill for Safari 10.1.
// Source: https://gist.github.com/samthor/64b114e4a4f539915a95b91ffd340acc
(function () {
var check = document.createElement("script");
if (!("noModule" in check) && "onbeforeload" in check) {
var support = false;
document.addEventListener(
"beforeload",
function (e) {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute("nomodule") || !support) {
return;
}
e.preventDefault();
},
true,
);
check.type = "module";
check.src = ".";
document.head.appendChild(check);
check.remove();
}
})();