forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/following.js

6 lines
190 B
JavaScript

function removeFollowing(t, username) {
post_toast(t,'/unfollow/' + username);
let table = document.getElementById("followers-table");
table.removeChild(t.parentElement.parentElement);
}