Skip to content

Commit 8ff2bba

Browse files
Josh Habdasmmistakes
Josh Habdas
authored andcommittedApr 19, 2017
fix(includes/video): use https always (mmistakes#945)
closes mmistakes#944
1 parent 0a00ea5 commit 8ff2bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎_includes/video

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- Courtesy of embedresponsively.com //-->
55
<div class="responsive-video-container">
66
{% if video_provider == "vimeo" %}
7-
<iframe src="http://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
7+
<iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
88
{% elsif video_provider == "youtube" %}
99
<iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
1010
{% endif %}

0 commit comments

Comments
 (0)
Please sign in to comment.