logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 4ba8d95a10fdf22a7cefc56ea0515b7c30ee53ff
parent 4016182b89dacbc9095ee7f4d2e021bb9fad65d0
Author: Henry Jameson <me@hjkos.com>
Date:   Tue, 22 Jun 2021 20:33:57 +0300

fix videos and related not having working drag controls

Diffstat:

Msrc/components/attachment/attachment.vue12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 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)"