mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
14 lines
No EOL
470 B
JavaScript
14 lines
No EOL
470 B
JavaScript
function saveShowOnTV(playlists_id, showOnTV) {
|
|
modal.showPleaseWait();
|
|
$.ajax({
|
|
url: webSiteRootURL + 'plugin/PlayLists/saveShowOnTV.json.php?playlists_id=' + playlists_id + '&showOnTV=' + showOnTV,
|
|
success: function (response) {
|
|
if (response.errro) {
|
|
avideoAlertError(response.msg);
|
|
} else {
|
|
avideoToast(response.msg);
|
|
}
|
|
modal.hidePleaseWait();
|
|
}
|
|
});
|
|
} |