aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-10-24 22:55:02 -0400
committertaehoon <th.dev91@gmail.com>2019-10-24 22:55:02 -0400
commitfbd1922567a873efb097109bbd5e54736eed8a4d (patch)
tree45a7cd6a0a7d524f367a516ef68fda11b4eb8dc7
parentc5e391b6064ec52fe4731d9a10a8999652453c8b (diff)
show preview popover when hover numbered replies
-rw-r--r--src/components/status/status.vue9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
index 77886912..65778b2e 100644
--- a/src/components/status/status.vue
+++ b/src/components/status/status.vue
@@ -209,18 +209,17 @@
class="replies"
>
<span class="faint">{{ $t('status.replies_list') }}</span>
- <span
+ <StatusPopover
v-for="reply in replies"
:key="reply.id"
- class="reply-link faint"
+ :status-id="reply.id"
>
<a
href="#"
+ class="reply-link"
@click.prevent="gotoOriginal(reply.id)"
- @mouseenter="replyEnter(reply.id, $event)"
- @mouseout="replyLeave()"
>{{ reply.name }}</a>
- </span>
+ </StatusPopover>
</div>
</div>
</div>