diff options
author | Minteck <contact@minteck.org> | 2022-07-22 10:19:04 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-07-22 10:19:04 +0200 |
commit | 92699995a1fc3f53eeed9fc50ffa86e76bb700e9 (patch) | |
tree | be8af702d57a53f834c23f35838b3f88a2d0c410 | |
parent | ca19a2bf2916a555f96ea7ab4791267dd5601c72 (diff) | |
download | cdn-92699995a1fc3f53eeed9fc50ffa86e76bb700e9.tar.gz cdn-92699995a1fc3f53eeed9fc50ffa86e76bb700e9.tar.bz2 cdn-92699995a1fc3f53eeed9fc50ffa86e76bb700e9.zip |
-rw-r--r-- | .DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | .idea/.gitignore | 8 | ||||
-rw-r--r-- | .idea/cdn.iml | 8 | ||||
-rw-r--r-- | .idea/modules.xml | 8 | ||||
-rw-r--r-- | .idea/vcs.xml | 6 | ||||
-rwxr-xr-x | js/statusbar.js | 4 |
6 files changed, 30 insertions, 4 deletions
diff --git a/.DS_Store b/.DS_Store Binary files differnew file mode 100644 index 0000000..5d59d1c --- /dev/null +++ b/.DS_Store diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/cdn.iml b/.idea/cdn.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/cdn.iml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="WEB_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$" /> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> +</module>
\ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..eadd5cc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/cdn.iml" filepath="$PROJECT_DIR$/.idea/cdn.iml" /> + </modules> + </component> +</project>
\ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project>
\ No newline at end of file diff --git a/js/statusbar.js b/js/statusbar.js index 210653e..e69de29 100755 --- a/js/statusbar.js +++ b/js/statusbar.js @@ -1,4 +0,0 @@ -window.addEventListener("load", () => {
- window.fetch("/statusbar.php").then((a) => {a.text().then((b) => {document.body.innerHTML=document.body.innerHTML+b;document.getElementById("statusbar").classList.add("desktop");})});
- $(".progress").fadeOut("slow");
-})
\ No newline at end of file |