зеркало из https://github.com/nextcloud/viewer.git
Merge pull request #1381 from nextcloud/feat/accessibility-alt
Add alt tag to img
This commit is contained in:
Коммит
29120be83b
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -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: {
|
||||
|
|
Загрузка…
Ссылка в новой задаче