mirror of https://github.com/iv-org/invidious.git
Add extra handling for autoplay
This commit is contained in:
parent
6c19f0f242
commit
7a6d4e6ef9
|
@ -275,6 +275,28 @@ function get_playlist() {
|
||||||
get_playlist();
|
get_playlist();
|
||||||
<% end %>
|
<% 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() {
|
function get_reddit_comments() {
|
||||||
comments = document.getElementById("comments");
|
comments = document.getElementById("comments");
|
||||||
var fallback = comments.innerHTML;
|
var fallback = comments.innerHTML;
|
||||||
|
|
Loading…
Reference in New Issue