This commit is contained in:
Dávid Jančár 2024-05-29 12:21:44 +02:00
parent 0013a2e283
commit c74516597a

@ -1,3 +1,6 @@
const response = fetch("/index.php?listfiles=1");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
async function dokelu() {
const response = await fetch("/index.php?listfiles=1");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
}
dokelu();