CC-3174 : showbuilder

showing message if some files could not be deleted since they were scheduled.
This commit is contained in:
Naomi Aro 2012-02-29 16:02:41 +01:00
parent 0f91f91c41
commit bc1d519408
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ var AIRTIME = (function(AIRTIME){
$.post("/library/delete",
{"format": "json", "media": aMedia},
function(json){
if (json.message !== undefined) {
alert(json.message);
}
oLibTT.fnSelectNone();
oLibTable.fnDraw();
});