rDrama/files/assets/js/admin/core.js

20 lines
263 B
JavaScript

function unchud_or_unban(t, url) {
postToast(t, url,
{
},
() => {
t.classList.add('d-none');
t.nextElementSibling.classList.remove('d-none');
});
}
function delReport(t, url) {
postToast(t, url,
{
},
() => {
t.parentElement.remove()
}
);
}