imdb_api-1.0.x-dev/js/episode.ajax.js
js/episode.ajax.js
/**
* @file
*/
(function ($, Drupal) {
Drupal.AjaxCommands.prototype.episodeUpdate = function (ajax, response, status) {
$(window).trigger('imdb_api:episode:update', [response.data]);
}
Drupal.AjaxCommands.prototype.episodeDelete = function (ajax, response, status) {
$(window).trigger('imdb_api:episode:delete', [response.data]);
}
})(jQuery, Drupal);
