1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 02:09:22 +02:00
Oinktube/plugin/PlayLists/script.js
2020-11-30 16:44:26 -03:00

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();
}
});
}