mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
30 lines
No EOL
897 B
JavaScript
30 lines
No EOL
897 B
JavaScript
function updateDiskUsage(videos_id) {
|
|
modal.showPleaseWait();
|
|
$.ajax({
|
|
url: webSiteRootURL + 'plugin/CustomizeAdvanced/updateDiskUsage.php',
|
|
data: { "videos_id": videos_id },
|
|
type: 'post',
|
|
success: function (response) {
|
|
if (response.error) {
|
|
avideoAlertError(response.msg);
|
|
} else {
|
|
$("#grid").bootgrid('reload');
|
|
}
|
|
console.log(response);
|
|
modal.hidePleaseWait();
|
|
}
|
|
});
|
|
}
|
|
function removeThumbs(videos_id) {
|
|
modal.showPleaseWait();
|
|
$.ajax({
|
|
url: webSiteRootURL + 'plugin/CustomizeAdvanced/deleteThumbs.php',
|
|
data: { "videos_id": videos_id },
|
|
type: 'post',
|
|
success: function (response) {
|
|
avideoResponse(response);
|
|
console.log(response);
|
|
modal.hidePleaseWait();
|
|
}
|
|
});
|
|
} |