mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
Added a title attribute to the avatar links to give an overview who has posted on a topic even if no avatars are available.
This commit is contained in:
parent
e75df20cc6
commit
5e078f833e
1 changed files with 3 additions and 3 deletions
|
@ -1,16 +1,16 @@
|
|||
<template name="post_avatars">
|
||||
<div aria-hidden="true" aria-live="off">
|
||||
<a href="{{getProfileUrl userId}}" class="avatar-link avatar-small author-avatar">
|
||||
<a href="{{getProfileUrl userId}}" title="{{getDisplayName userId}}" class="avatar-link avatar-small author-avatar">
|
||||
{{> avatar userId=userId shape="circle"}}
|
||||
</a>
|
||||
{{#if commenters}}
|
||||
<div class="post-commenters">
|
||||
{{#each commenters}}
|
||||
<a href="{{getProfileUrl this}}" class="avatar-link avatar-small commenter-avatar">
|
||||
<a href="{{getProfileUrl this}}" title="{{getDisplayName this}}" class="avatar-link avatar-small commenter-avatar">
|
||||
{{> avatar userId=this shape="circle"}}
|
||||
</a>
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Reference in a new issue