We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d806a07 commit f90aff7Copy full SHA for f90aff7
views/mediaPlayerPartials/deleteCommentAndBlockUnblockUserJs.pug
@@ -62,7 +62,7 @@ script.
62
63
$('.delete-thread-comment-button').on('release click', function (e) {
64
65
- var threadComment = $(this).parent().parent().parent();
+ var commentInThread = $(this).parent().parent().parent();
66
67
var commentId = $(this).attr('commentId');
68
@@ -77,7 +77,7 @@ script.
77
confirmButtonText: 'Delete Comment'
78
}).then(function (result) {
79
if (result.value) {
80
- deleteComment(commentId, threadComment)
+ deleteComment(commentId, commentInThread)
81
} else {
82
swal.close();
83
}
0 commit comments