Add files from before the Git repository

This commit is contained in:
2023-08-24 18:36:44 -04:00
parent 81729a9c39
commit a0f9b644a4
39 changed files with 69596 additions and 1 deletions

9
plugins/splash.js Normal file
View File

@ -0,0 +1,9 @@
global.core.on("post-init", function () {
});
var loadingScreen = global.document.createElement("div");
loadingScreen.classList.add("fullscreen overlay");
loadingScreen.id = "loading-screen";
global.document.body.appendChild(loadingScreen);