mirror of
https://github.com/velour/catbase.git
synced 2025-04-04 20:21:42 +00:00
meme: add confirm to deletion button
This commit is contained in:
parent
33372ed770
commit
c548e64e24
@ -200,12 +200,14 @@ var memeIndex = `
|
|||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
evt.stopPropagation();
|
evt.stopPropagation();
|
||||||
}
|
}
|
||||||
axios.delete('/meme/rm', { data: this.editConfig })
|
if (confirm("Are you sure you want to delete this meme?")) {
|
||||||
.then(resp => {
|
axios.delete('/meme/rm', { data: this.editConfig })
|
||||||
this.editConfig = null;
|
.then(resp => {
|
||||||
this.refresh();
|
this.editConfig = null;
|
||||||
})
|
this.refresh();
|
||||||
.catch(err => this.err = err);
|
})
|
||||||
|
.catch(err => this.err = err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user