This commit is contained in:
Aevann1 2021-12-09 16:32:46 +02:00
parent e72e497fd8
commit 77e858fa20
41 changed files with 425 additions and 659 deletions

View file

@ -0,0 +1,5 @@
function removeFollower(event, username) {
post_toast('/remove_follow/' + username);
let table = document.getElementById("followers-table");
table.removeChild(event.target.parentElement.parentElement);
}