This commit is contained in:
Bruno Rybársky 2024-04-26 01:27:53 +02:00
parent 052861ff3f
commit 5c66ddc44f

@ -573,6 +573,9 @@ function deleteFile(fileID) {
let xhr = new XMLHttpRequest();
xhr.open('POST', '/upload', true);
xhr.onload = function () {
listFiles();
};
xhr.send(formData);
}
@ -641,6 +644,7 @@ async function deleteMeme(memeId) {
xhr.onload = function () {
const resp = JSON.parse(xhr.responseText);
handleResponse(resp, "Meme bol zmazaný", "Nastala chyba pri mazaní meme-u");
softReload();
};
xhr.send(formData);
}