WEBUI JS: change stop recoding behaviour from delete to abort, fixes#2472

This commit is contained in:
Jaroslav Kysela 2014-11-12 10:36:23 +01:00
parent 99907809bb
commit e296f3c3ac

View file

@ -247,13 +247,14 @@ tvheadend.epgDetails = function(event) {
function stopDVR() {
tvheadend.AjaxConfirm({
url: 'api/idnode/delete',
url: 'api/dvr/entry/cancel',
params: {
uuid: event.dvrUuid,
},
success: function(d) {
win.close();
}
},
question: 'Do you really want to abort/unschedule this event?'
});
}