1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 04:01:42 +00:00

meme: add confirm to deletion button

This commit is contained in:
Chris Sexton 2021-01-11 17:25:31 -05:00
parent 33372ed770
commit c548e64e24

View File

@ -200,6 +200,7 @@ var memeIndex = `
evt.preventDefault();
evt.stopPropagation();
}
if (confirm("Are you sure you want to delete this meme?")) {
axios.delete('/meme/rm', { data: this.editConfig })
.then(resp => {
this.editConfig = null;
@ -208,6 +209,7 @@ var memeIndex = `
.catch(err => this.err = err);
}
}
}
})
</script>
</body>