diff options
| author | Henry Jameson <me@hjkos.com> | 2021-06-22 20:33:57 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-06-22 20:33:57 +0300 |
| commit | 4ba8d95a10fdf22a7cefc56ea0515b7c30ee53ff (patch) | |
| tree | 090aaef9c0ebdce8ca03ed2b10093563b6bed8bb /src/components | |
| parent | 4016182b89dacbc9095ee7f4d2e021bb9fad65d0 (diff) | |
fix videos and related not having working drag controls
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/attachment/attachment.vue | 12 |
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)" |
