diff options
author | Zero~Informatique | 2020-06-20 16:50:49 +0200 |
---|---|---|
committer | OzoneGrif | 2020-06-28 14:11:13 +0200 |
commit | 170d7a61f720ece9dc4b347b19f5a8213f1d8984 (patch) | |
tree | 3a7af0595faea4a98437f8f73b3172529bda3a1d /viewer/src/components/item_handlers/LdVideoViewer.vue | |
parent | 06355c9cebce469d3d827d48043387144c2458a5 (diff) | |
download | ldgallery-170d7a61f720ece9dc4b347b19f5a8213f1d8984.tar.gz |
viewer: prettier formatting based on eslint-prettier plugin
Diffstat (limited to 'viewer/src/components/item_handlers/LdVideoViewer.vue')
-rw-r--r-- | viewer/src/components/item_handlers/LdVideoViewer.vue | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/viewer/src/components/item_handlers/LdVideoViewer.vue b/viewer/src/components/item_handlers/LdVideoViewer.vue index 67203a5..2e3a43c 100644 --- a/viewer/src/components/item_handlers/LdVideoViewer.vue +++ b/viewer/src/components/item_handlers/LdVideoViewer.vue | |||
@@ -21,13 +21,7 @@ | |||
21 | <template> | 21 | <template> |
22 | <!-- intermediate container necessary to eliminate the scrollbar --> | 22 | <!-- intermediate container necessary to eliminate the scrollbar --> |
23 | <div class="fill no-scroll"> | 23 | <div class="fill no-scroll"> |
24 | <video | 24 | <video class="fill" :src="itemResourceUrl" :poster="thumbnailResourceUrl" preload="auto" controls> |
25 | class="fill" | ||
26 | :src="itemResourceUrl" | ||
27 | :poster="thumbnailResourceUrl" | ||
28 | preload="auto" | ||
29 | controls | ||
30 | > | ||
31 | <ld-download :item="item" /> | 25 | <ld-download :item="item" /> |
32 | </video> | 26 | </video> |
33 | </div> | 27 | </div> |
@@ -50,5 +44,4 @@ export default class LdVideoViewer extends Vue { | |||
50 | } | 44 | } |
51 | </script> | 45 | </script> |
52 | 46 | ||
53 | <style lang="scss" module> | 47 | <style lang="scss" module></style> |
54 | </style> | ||