aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/attachment/attachment.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue
index b8be82da..e1e700c4 100644
--- a/src/components/attachment/attachment.vue
+++ b/src/components/attachment/attachment.vue
@@ -127,7 +127,7 @@
/>
</a>
- <a
+ <span
v-if="type === 'video' && !hidden"
class="video-container"
:href="attachment.url"
@@ -145,9 +145,9 @@
class="play-icon"
icon="play-circle"
/>
- </a>
+ </span>
- <a
+ <span
v-if="type === 'audio' && !hidden"
class="audio-container"
:href="attachment.url"
@@ -162,7 +162,7 @@
@play="$emit('play')"
@pause="$emit('pause')"
/>
- </a>
+ </span>
<div
v-if="type === 'html' && attachment.oembed"
@@ -183,7 +183,7 @@
</div>
</div>
- <a
+ <span
v-if="type === 'flash' && !hidden"
class="flash-container"
:href="attachment.url"
@@ -196,7 +196,7 @@
@playerOpened="setFlashLoaded(true)"
@playerClosed="setFlashLoaded(false)"
/>
- </a>
+ </span>
</div>
<div
v-if="size !== 'hide' && !hideDescription && (edit || localDescription)"