added 'loop' as default to videos in show and showLite

This commit is contained in:
bill bittner 2017-07-25 15:00:32 -07:00
parent d2550fb6dc
commit 7a6b21d3e7
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
<div class="panel">
<div id="asset-placeholder">
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
<video class="show-asset" autoplay controls>
<video class="show-asset" autoplay loop controls>
<source src="/api/streamFile/{{fileInfo.fileName}}">
{{!--fallback--}}
Your browser does not support the <code>video</code> element.

View file

@ -1,7 +1,7 @@
<div id="asset-placeholder">
<a href="/{{fileInfo.name}}/{{fileInfo.claimId}}">
{{#ifConditional fileInfo.fileType '===' 'video/mp4'}}
<video class="show-asset-lite" autoplay controls>
<video class="show-asset-lite" autoplay loop controls>
<source src="/api/streamFile/{{fileInfo.fileName}}">
{{!--fallback--}}
Your browser does not support the <code>video</code> element.