2022-07-16 21:00:02 +00:00
|
|
|
function removeComment(post_id,button1,button2) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/remove_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
post(url)
|
|
|
|
|
|
|
|
try {
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.add("banned");
|
|
|
|
} catch(e) {
|
|
|
|
document.getElementById("context").classList.add("banned");
|
|
|
|
}
|
|
|
|
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
|
|
button.onclick=function(){approveComment(post_id)};
|
|
|
|
button.innerHTML='<i class="fas fa-clipboard-check"></i>Approve'
|
|
|
|
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
|
|
document.getElementById(button1).classList.toggle("d-md-block");
|
|
|
|
document.getElementById(button2).classList.toggle("d-md-block");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function approveComment(post_id,button1,button2) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/approve_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
post(url)
|
|
|
|
|
|
|
|
try {
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.remove("banned");
|
|
|
|
} catch(e) {
|
|
|
|
document.getElementById("context").classList.remove("banned");
|
|
|
|
}
|
|
|
|
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
|
|
button.onclick=function(){removeComment(post_id)};
|
|
|
|
button.innerHTML='<i class="fas fa-trash-alt"></i>Remove'
|
|
|
|
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
|
|
document.getElementById(button1).classList.toggle("d-md-block");
|
|
|
|
document.getElementById(button2).classList.toggle("d-md-block");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function removeComment2(post_id,button1,button2) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/remove_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
post(url)
|
|
|
|
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.add("banned");
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
|
|
button.onclick=function(){approveComment(post_id)};
|
|
|
|
button.innerHTML='<i class="fas fa-clipboard-check"></i>Approve'
|
|
|
|
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
|
|
document.getElementById(button1).classList.toggle("d-none");
|
|
|
|
document.getElementById(button2).classList.toggle("d-none");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function approveComment2(post_id,button1,button2) {
|
2022-08-11 04:04:41 +00:00
|
|
|
url="/approve_comment/"+post_id
|
2022-07-16 21:00:02 +00:00
|
|
|
|
|
|
|
post(url)
|
|
|
|
|
|
|
|
document.getElementById("comment-"+post_id+"-only").classList.remove("banned");
|
|
|
|
var button=document.getElementById("remove-"+post_id);
|
|
|
|
button.onclick=function(){removeComment(post_id)};
|
|
|
|
button.innerHTML='<i class="fas fa-trash-alt"></i>Remove'
|
|
|
|
|
|
|
|
if (typeof button1 !== 'undefined') {
|
|
|
|
document.getElementById(button1).classList.toggle("d-none");
|
|
|
|
document.getElementById(button2).classList.toggle("d-none");
|
|
|
|
}
|
|
|
|
}
|