Updates the comment cancel button to remove jQuery

This commit is contained in:
William Karsten 2022-06-07 12:49:54 -05:00
parent 1ad1a4d6e2
commit 77df8b65e3
1 changed files with 15 additions and 12 deletions

View File

@ -396,18 +396,6 @@ $(document).ready(function() {
return false;
});
$(document).on("click", "button.comment-cancel", function() {
var comment = $(this).closest(".comment");
var comment_id = comment.attr("data-shortid");
if (comment_id != null && comment_id !== '') {
$.get("/comments/" + comment_id + "?show_tree_lines=true", function(data) {
comment.replaceWith($.parseHTML(data));
});
} else {
comment.remove();
}
});
$(document).on("click", "a.comment_deletor", function(event) {
event.preventDefault();
if (confirm("Are you sure you want to delete this comment?")) {
@ -577,6 +565,21 @@ onPageLoad(() => {
}
});
on('click', 'button.comment-cancel', (event) => {
const comment = (parentSelector(event.target, '.comment'));
const commentId = comment.getAttribute('data-shortid');
if (commentId !== null && commentId !== '') {
fetch('/comments/' + commentId + '?show_tree_lines=true')
.then(response => {
return response.text().then((text) => {
replace(comment, text);
});
});
} else {
comment.remove();
}
});
on('click', 'a.comment_editor', (event) => {
let comment = parentSelector(event.target, '.comment');
fetch('/comments/' + comment.getAttribute('data-shortid') + '/edit')