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

live tv updates

This commit is contained in:
Luke Pulverenti 2013-12-18 00:44:46 -05:00
parent a3b95de459
commit b0d84e5046
9 changed files with 208 additions and 150 deletions

View file

@ -545,9 +545,11 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, wi
});
};
self.getNewLiveTvTimerDefaults = function () {
self.getNewLiveTvTimerDefaults = function (options) {
var url = self.getUrl("LiveTv/Timers/Defaults");
options = options || {};
var url = self.getUrl("LiveTv/Timers/Defaults", options);
return self.ajax({
type: "GET",