diff options
| author | Henry <spam@hjkos.com> | 2018-12-05 07:29:27 +0000 |
|---|---|---|
| committer | Henry <spam@hjkos.com> | 2018-12-05 07:29:27 +0000 |
| commit | 9591d179f48b90b072e70b4fc475ae1691b96313 (patch) | |
| tree | 5d4b8e4eb117f01c4ee6eaac38d79879d2254db2 /src | |
| parent | 341e7da1d8c9fa024d6bb3a214190f6b9a569973 (diff) | |
| parent | 75879621b1f4e1adb3558e92a07c4b10383b99f2 (diff) | |
Merge branch 'feld-ios_video' into 'develop'
Fix iOS Safari from making videos play fullscreen by default
Closes #178
See merge request pleroma/pleroma-fe!400
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/attachment/attachment.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 8795b131..40e2cf1b 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -14,7 +14,7 @@ <StillImage :class="{'small': isSmall}" referrerpolicy="no-referrer" :mimetype="attachment.mimetype" :src="attachment.large_thumb_url || attachment.url"/> </a> - <video :class="{'small': isSmall}" v-if="type === 'video' && !hidden" @loadeddata="onVideoDataLoad" :src="attachment.url" controls :loop="loopVideo"></video> + <video :class="{'small': isSmall}" v-if="type === 'video' && !hidden" @loadeddata="onVideoDataLoad" :src="attachment.url" controls :loop="loopVideo" playsinline></video> <audio v-if="type === 'audio'" :src="attachment.url" controls></audio> |
