diff --git a/lib/widgets/youtube/youtube.js b/lib/widgets/youtube/youtube.js index 16c2c9c..f774ffb 100644 --- a/lib/widgets/youtube/youtube.js +++ b/lib/widgets/youtube/youtube.js @@ -8,14 +8,14 @@ // Options: // // ``` -// aspect desired aspect ratio [sd], hd +// aspect desired aspect ratio [hd], sd // ``` // // Examples: // // ``` -// Include video with id 1234 at 16x9 with autoplay -// [[youtube/1234?aspect=16x9&autoplay=1]] +// Include video with id 1234 in standard def with autoplay +// [[youtube/1234?aspect=sd&autoplay=1]] // ``` // function render(id, options) { @@ -26,5 +26,5 @@ function render(id, options) { } module.exports = function(widgets) { - widgets.add("youtube/:id", render, {aspect: "sd"}); + widgets.add("youtube/:id", render, {aspect: "hd"}); }; diff --git a/test/widgets/youtube/youtube.html b/test/widgets/youtube/youtube.html index cea3ee4..a79c68d 100644 --- a/test/widgets/youtube/youtube.html +++ b/test/widgets/youtube/youtube.html @@ -1,4 +1,4 @@ -