2022-10-10 04:56:39 +00:00
|
|
|
function removeFollowing(t, username) {
|
|
|
|
post_toast(t,'/unfollow/' + username);
|
2022-07-16 21:00:02 +00:00
|
|
|
let table = document.getElementById("followers-table");
|
2022-10-10 04:56:39 +00:00
|
|
|
table.removeChild(t.parentElement.parentElement);
|
|
|
|
}
|