Update followers_list.js

This commit is contained in:
umonaca 2020-05-08 04:15:04 -04:00 committed by GitHub
parent bc91a415ff
commit c7f666a538

View file

@ -80,7 +80,7 @@ $(document).ready( function() {
}
let url = $("#userPageURL").text().replace('0', data.id);
temp.find("a").attr('href', url);
temp.find(".user-brief").text($(data.note).text());
temp.find(".user-brief").text(data.note.replace(/(<([^>]+)>)/ig,""));
$("#main .user:last").after(temp);
});
@ -186,4 +186,4 @@ $(document).ready( function() {
});
});
});