Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann committed Jun 6, 2020
1 parent 7d11ac0 commit 6033ce2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/embetty-vue.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2578,7 +2578,7 @@ var YoutubeVideo = {
* @returns {!string} The <iframe> playing the video.
*/
getIframe: function (videoData) {
return '<iframe ' + 'src="//www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' + 'width="' + videoData.width + '" ' + 'height="' + videoData.height + '" ' + 'frameborder="0" ' + 'allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"' + 'webkitallowfullscreen ' + 'mozallowfullscreen ' + 'msallowfullscreen ' + 'allowfullscreen></iframe>';
return '<iframe ' + 'src="https://www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' + 'width="' + videoData.width + '" ' + 'height="' + videoData.height + '" ' + 'frameborder="0" ' + 'allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"' + 'webkitallowfullscreen ' + 'mozallowfullscreen ' + 'msallowfullscreen ' + 'allowfullscreen></iframe>';
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/embetty-vue.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ var YoutubeVideo = {
*/
getIframe: function(videoData) {
return '<iframe ' +
'src="//www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' +
'src="https://www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' +
'width="' + videoData.width + '" ' +
'height="' + videoData.height + '" ' +
'frameborder="0" ' +
Expand Down
2 changes: 1 addition & 1 deletion dist/embetty-vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -3422,7 +3422,7 @@
* @returns {!string} The <iframe> playing the video.
*/
getIframe: function getIframe(videoData) {
return '<iframe ' + 'src="//www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' + 'width="' + videoData.width + '" ' + 'height="' + videoData.height + '" ' + 'frameborder="0" ' + 'allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"' + 'webkitallowfullscreen ' + 'mozallowfullscreen ' + 'msallowfullscreen ' + 'allowfullscreen></iframe>';
return '<iframe ' + 'src="https://www.youtube-nocookie.com/embed/' + videoData.videoId + '?autoplay=1&start=' + videoData.startAt + '" ' + 'width="' + videoData.width + '" ' + 'height="' + videoData.height + '" ' + 'frameborder="0" ' + 'allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"' + 'webkitallowfullscreen ' + 'mozallowfullscreen ' + 'msallowfullscreen ' + 'allowfullscreen></iframe>';
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/embetty-vue.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "embetty-vue",
"version": "1.2.2",
"version": "1.3.0",
"description": "Embetty displays remote content like tweets or videos without compromising your privacy.",
"license": "MIT",
"author": {
Expand Down

0 comments on commit 6033ce2

Please sign in to comment.