rDrama/files/assets/js/followers.js

9 lines
149 B
JavaScript
Raw Normal View History

2022-10-10 04:56:39 +00:00
function removeFollower(t, username) {
2023-08-12 10:49:23 +00:00
postToast(
t,
`/remove_follow/${username}`,
{},
() => {t.parentElement.parentElement.remove()}
);
2022-10-10 04:56:39 +00:00
}