This commit is contained in:
Lorenzo Carbonell 2022-02-19 19:43:19 +01:00
parent 1f04657a06
commit 45c2030a56
2 changed files with 12 additions and 0 deletions

View File

@ -20,6 +20,7 @@
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="css/styles.css?v=1.0">
<script src="js/script.js"></script>
</head>

11
nginx/html/js/script.js Normal file
View File

@ -0,0 +1,11 @@
const ready = (callback) => {
if (document.readyState != "loading") callback();
else document.addEventListener("DOMContentLoaded", callback);
}
ready(() => {
});
function init(){
}