Add avatar.

This commit is contained in:
tastytea 2019-11-02 07:45:04 +01:00
parent 2d0411e59c
commit 2ab93b2bdc
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 8 additions and 0 deletions

View File

@ -70,9 +70,17 @@ function author_html(status)
{ {
const p = document.createElement("p"); const p = document.createElement("p");
p.setAttribute("class", "mastodon-api-comment-author"); p.setAttribute("class", "mastodon-api-comment-author");
const img = document.createElement("img");
img.setAttribute("class", "mastodon-api-comment-avatar");
img.setAttribute("src", status.account.avatar);
p.appendChild(img);
p.innerHTML += " ";
const strong = document.createElement("strong"); const strong = document.createElement("strong");
strong.appendChild(document.createTextNode(status.account.display_name)); strong.appendChild(document.createTextNode(status.account.display_name));
p.appendChild(strong); p.appendChild(strong);
p.appendChild( p.appendChild(
document.createTextNode(" (" + status.account.acct + ") wrote on " document.createTextNode(" (" + status.account.acct + ") wrote on "
+ get_status_time(status) + ":")); + get_status_time(status) + ":"));