Skip to content

Commit

Permalink
chore(docs): use https URLs in noUITitleAtttributes example (#7809)
Browse files Browse the repository at this point in the history
  • Loading branch information
mister-ben authored Aug 2, 2022
1 parent 9ca2e87 commit 0211d73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sandbox/noUITitleAttributes.html.example
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
</div>

<video id="vid1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="264"
poster="http://vjs.zencdn.net/v/oceans.png"
poster="https://vjs.zencdn.net/v/oceans.png"
data-setup='{"controlBar": {"volumePanel": {"inline": false}}, "noUITitleAttributes" : true}'>
<source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
<source src="http://vjs.zencdn.net/v/oceans.webm" type="video/webm">
<source src="http://vjs.zencdn.net/v/oceans.ogv" type="video/ogg">
<source src="https://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
<source src="https://vjs.zencdn.net/v/oceans.webm" type="video/webm">
<source src="https://vjs.zencdn.net/v/oceans.ogv" type="video/ogg">
<track kind="captions" src="../docs/examples/shared/example-captions.vtt" srclang="en" label="English">
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>
<p>This demo shows the effect of setting the <strong>noUITitleAttributes</strong> option for video.js. It also includes the <strong>:focus-visible</strong> polyfill (see focus-visible.html)</p>
<script>
Expand Down

0 comments on commit 0211d73

Please sign in to comment.