1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add missing files

This commit is contained in:
Luke Pulverenti 2013-12-01 11:09:05 -05:00
parent 8d17f5f79e
commit 2aa7e92987
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,19 @@
function deleteRecording(page, id) {
Dashboard.confirm("Are you sure you wish to delete this recording?", "Confirm Recording Deletion", function (result) {
if (result) {
Dashboard.showLoadingMsg();
ApiClient.deleteLiveTvRecording(id).done(function () {
Dashboard.alert('Recording deleted');
reload(page);
});
}
});
}