-
Bug
-
Resolution: Invalid
-
Major
-
None
-
3.2.1
The default HTML replacements for youtube and vimeo should use protocol safe URLs ( i.e. //, not http:// or https:// ) so that they work correctly when behind (or not) an HTTPS proxy:
youtube:
<iframe width="560" height="315" src="//www.youtube.com/embed/{IDENTIFIER}" frameborder="0" allowfullscreen></iframe> |
<p>
|
<a href="//www.youtube.com/watch?v={IDENTIFIER}">Watch on YouTube</a> |
</p>
|
vimeo:
<iframe src="//player.vimeo.com/video/{IDENTIFIER}?title=0&byline=0&portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> |
<p>
|
<a href="//vimeo.com/{IDENTIFIER}">Watch on Vimeo</a> |
</p>
|