Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<a href="<%- learnMoreLink %>"><%- learnMoreTitle %> <i class="fas fa-chevron-right"></i></a>
</div>
<div class="w3-container w3-cell w3-mobile section-video" >
<video data-autoplay="true" muted style="width: 100%; margin-bottom: -8px" data-loop-delay="<%= typeof videoLoopDelay !== 'undefined' ? videoLoopDelay : '' %>"
src="<%- video %>"></video>
<video data-autoplay="true" playsinline muted style="width: 100%; margin-bottom: -8px" data-loop-delay="<%= typeof videoLoopDelay !== 'undefined' ? videoLoopDelay : '' %>">
<source src="<%- video %>" type="video/mp4" />
</video>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<div class="w3-col l9">
<div class="w3-card" style="background-color: #0078D7">
<video id="vid" autoplay muted style="width: 100%; margin-bottom: -8px"
<video id="vid" playsinline autoplay muted style="width: 100%; margin-bottom: -8px"
data-loop-delay="5000"
src="https://adaptivecardsblob.blob.core.windows.net/assets/AdaptiveIntroVideo.mp4"></video>
</div>
Expand Down