Merge pull request #24 from umonaca/patch-1
[Bugfix] Follower/folllowing list
This commit is contained in:
commit
bc5b7ab827
2 changed files with 4 additions and 4 deletions
|
@ -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() {
|
|||
});
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -112,7 +112,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() {
|
|||
});
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue