show preview popover when hover numbered replies
This commit is contained in:
parent
c5e391b606
commit
fbd1922567
1 changed files with 4 additions and 5 deletions
|
@ -209,18 +209,17 @@
|
||||||
class="replies"
|
class="replies"
|
||||||
>
|
>
|
||||||
<span class="faint">{{ $t('status.replies_list') }}</span>
|
<span class="faint">{{ $t('status.replies_list') }}</span>
|
||||||
<span
|
<StatusPopover
|
||||||
v-for="reply in replies"
|
v-for="reply in replies"
|
||||||
:key="reply.id"
|
:key="reply.id"
|
||||||
class="reply-link faint"
|
:status-id="reply.id"
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
|
class="reply-link"
|
||||||
@click.prevent="gotoOriginal(reply.id)"
|
@click.prevent="gotoOriginal(reply.id)"
|
||||||
@mouseenter="replyEnter(reply.id, $event)"
|
|
||||||
@mouseout="replyLeave()"
|
|
||||||
>{{ reply.name }}</a>
|
>{{ reply.name }}</a>
|
||||||
</span>
|
</StatusPopover>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue