media modal: add support for media descriptions

This commit is contained in:
William Pitcock 2019-02-18 06:09:55 +00:00
parent 9fefd74e9a
commit 68f403a3e5

View file

@ -1,6 +1,6 @@
<template>
<div class="modal-view" v-if="showing" @click.prevent="hide">
<img class="modal-image" v-if="type === 'image'" :src="currentMedia.url"></img>
<img class="modal-image" v-if="type === 'image'" :src="currentMedia.url" :alt="currentMedia.description" :title="currentMedia.description"></img>
<VideoAttachment
class="modal-image"
v-if="type === 'video'"