Merge pull request #718 from cmho/702-confirm-deletion

[702] Add confirmation check to post deletion function
This commit is contained in:
daniel 2019-01-05 23:19:00 -07:00 committed by GitHub
commit b7f866441c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -496,6 +496,8 @@ export default {
},
deletePost() {
var result = confirm('Are you sure you want to delete this post?');
if (result) {
if($('body').hasClass('loggedIn') == false) {
return;
}
@ -510,5 +512,6 @@ export default {
});
}
}
}
}
</script>