17 lines
489 B
JavaScript
17 lines
489 B
JavaScript
export function playNextPlaylistVideo() {
|
|
console.log('Playing next episode');
|
|
if (!document.getElementById("playlist_id")) {
|
|
console.log('No playlist specified');
|
|
return;
|
|
}
|
|
|
|
var playlistId = document.getElementById("playlist_id").value;
|
|
var nextEpisode = document.getElementById("playlist_next_episode_slug").value;
|
|
|
|
if (nextEpisode === ""){
|
|
return;
|
|
}
|
|
|
|
window.location.href = '/hentai/' + nextEpisode + '?playlist=' + playlistId;
|
|
}
|