mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-25 05:29:07 +01:00
feat: show snippet of alt text when hovering alt button
This commit is contained in:
parent
6ddb96a392
commit
c44f885671
@ -61,7 +61,12 @@
|
|||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<button
|
<button
|
||||||
v-if="media.comment"
|
v-if="media.comment"
|
||||||
v-tooltip="i18n.ts.alt"
|
v-tooltip.noLabel="`${i18n.ts.alt}: ${
|
||||||
|
media.comment.length > 200 ?
|
||||||
|
media.comment.trim().slice(0, 200) + '...'
|
||||||
|
: media.comment.trim()
|
||||||
|
}`"
|
||||||
|
:aria-label="i18n.ts.alt"
|
||||||
class="_button"
|
class="_button"
|
||||||
@click.stop="captionPopup"
|
@click.stop="captionPopup"
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user