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

20 lines
267 B
JavaScript
Raw Normal View History

function unchud_or_unban(t, url) {
postToast(t, url,
{
},
() => {
t.classList.add('d-none');
2023-09-08 20:03:45 +00:00
t.previousElementSibling.classList.remove('d-none');
});
}
2023-05-16 00:01:53 +00:00
function delReport(t, url) {
postToast(t, url,
{
},
() => {
t.parentElement.remove()
}
);
}