Skip to content

Commit

Permalink
Merge pull request #1 from stephendwolff/master
Browse files Browse the repository at this point in the history
Use Https for Vimeo call, so that plugin works on https sites
  • Loading branch information
Francesco Facconi committed Nov 22, 2013
2 parents 44228a6 + 3c1ed18 commit ea49e4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmsplugin_vimeo/templates/cmsplugin_vimeo/embed.html
Original file line number Original file line Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class='vimeo' style='width: {{ object.width }}px; height: {{ object.height }}px;'> <div class='vimeo' style='width: {{ object.width }}px; height: {{ object.height }}px;'>
<iframe src="http://player.vimeo.com/video/{{ object.video_id }}?autoplay={{ object.autoplay|yesno:"1,0" }}&amp;loop={{ object.loop|yesno:"1,0" }}" <iframe src="https://player.vimeo.com/video/{{ object.video_id }}?autoplay={{ object.autoplay|yesno:"1,0" }}&amp;loop={{ object.loop|yesno:"1,0" }}"
width="{{ object.width }}" height="{{ object.height }}" width="{{ object.width }}" height="{{ object.height }}"
frameborder="{{ object.border|yesno:"1,0" }}" frameborder="{{ object.border|yesno:"1,0" }}"
webkitAllowFullScreen webkitAllowFullScreen
mozallowfullscreen mozallowfullscreen
allowFullScreen> allowFullScreen>
</iframe> </iframe>
</div> </div>

0 comments on commit ea49e4a

Please sign in to comment.