Initial Commit

This commit is contained in:
2026-02-27 11:39:29 +02:00
parent defa9dcd6f
commit 200058ba03
26 changed files with 1445 additions and 2 deletions

11
js/index.js Normal file
View File

@@ -0,0 +1,11 @@
((global) => {
global.Y2KAlerts = {
y2kAlert: global.y2kAlert,
Y2K: global.Y2K,
quick: function (title, type, message, options) {
return global.y2kAlert.quick(title, type, message, options);
}
};
})(window);