diff options
| author | taehoon <th.dev91@gmail.com> | 2019-10-24 22:55:02 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-10-24 22:55:02 -0400 |
| commit | fbd1922567a873efb097109bbd5e54736eed8a4d (patch) | |
| tree | 45a7cd6a0a7d524f367a516ef68fda11b4eb8dc7 /src/components/status/status.vue | |
| parent | c5e391b6064ec52fe4731d9a10a8999652453c8b (diff) | |
show preview popover when hover numbered replies
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 9 |
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> |
