";
$("#streamingContent").replaceWith(div);
});
$(document).delegate('#streamingPopup #modalSkip', 'click', function (event) {
nextSong();
});
";
$("#streamingContent").replaceWith(div);
console.log('Playing Youtube id: ' + youtubeID);
$('.modal-dialog').addClass('youtubeModalDialog');
$('#streamingPopup').removeData("bs.modal");
let ytUrlParams = new URL(youtubeURL).searchParams;
player = new YT.Player('streamingContent', {
'videoId': youtubeID,
playerVars: {
'origin': 'thebobdylanproject.com',
'autoplay': 1,
'enablejsapi': 1
},
events: {
'onReady': function (e) { uncheckPlayedCheckbox(e, ytUrlParams); },
'onStateChange': function (e) { onStateChange(e, playlist); }
},
});
}
function uncheckAllInSection(e) {
e.parents('.release-type-panel').find('.PlaylistCheckBox').each(function (index) {
$(this).prop('checked', false);
});
}