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

update to latest js api client

This commit is contained in:
Luke Pulverenti 2013-05-04 16:02:20 -04:00
parent 1774c39a74
commit d4ba550d57
3 changed files with 13 additions and 2 deletions

View file

@ -537,6 +537,17 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
});
};
self.getNextUpEpisodes = function (options) {
var url = self.getUrl("Shows/NextUp", options);
return self.ajax({
type: "GET",
url: url,
dataType: "json"
});
};
/**
* Stops a scheduled task
*/