Skip to content

Commit

Permalink
fix(includes/video): use https always (mmistakes#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Habdas authored and mmistakes committed Apr 19, 2017
1 parent 0a00ea5 commit 8ff2bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/video
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- Courtesy of embedresponsively.com //-->
<div class="responsive-video-container">
{% if video_provider == "vimeo" %}
<iframe src="http://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
{% elsif video_provider == "youtube" %}
<iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
{% endif %}
Expand Down

0 comments on commit 8ff2bba

Please sign in to comment.