Add extra handling for autoplay

This commit is contained in:
Omar Roth 2018-11-08 08:37:48 -06:00
parent 6c19f0f242
commit 7a6d4e6ef9

View File

@ -275,6 +275,28 @@ function get_playlist() {
get_playlist();
<% end %>
<% if params[:autoplay] %>
var bpb = player.getChild('bigPlayButton');
if (bpb) {
bpb.hide();
player.ready(function() {
var promise = player.play();
if (promise === undefined) {
bpb.show();
} else {
promise.then(function() {
bpb.show();
}, function() {
bpb.show();
});
}
});
}
<% end %>
function get_reddit_comments() {
comments = document.getElementById("comments");
var fallback = comments.innerHTML;