Remove station podcast from podcast datatable; editor now opens from button in podcasts view

This commit is contained in:
Duncan Sommerville 2015-10-29 12:17:52 -04:00
parent 8c49477b9c
commit 4b11979eff
5 changed files with 49 additions and 16 deletions

View file

@ -216,6 +216,15 @@ var AIRTIME = (function (AIRTIME) {
});
};
/**
* Open a tab to view and edit the station podcast
*/
mod.openStationPodcast = function() {
$.get(endpoint + 'station', function(json) {
_initAppFromResponse(json);
})
};
/**
* Create a bulk request to edit all currently selected podcasts.
*/