Merge pull request #1381 from nextcloud/feat/accessibility-alt

Add alt tag to img
This commit is contained in:
John Molakvoæ 2022-09-21 19:47:46 +02:00 коммит произвёл GitHub
Родитель 51af5abaa4 96c54da924
Коммит 29120be83b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 9 добавлений и 3 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -28,6 +28,7 @@
@close="onClose" />
<img v-else
:alt="alt"
:class="{
dragging,
loaded,
@ -51,6 +52,7 @@ import axios from '@nextcloud/axios'
import Vue from 'vue'
import AsyncComputed from 'vue-async-computed'
import ImageEditor from './ImageEditor.vue'
import { basename } from '@nextcloud/paths'
Vue.use(AsyncComputed)
@ -90,6 +92,10 @@ export default {
zoomWidth() {
return Math.round(this.width * this.zoomRatio)
},
alt() {
const fileName = basename(this.src)
return t('viewer', `Content of '${fileName}'`)
},
},
asyncComputed: {