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

update components

This commit is contained in:
Luke Pulverenti 2016-02-28 00:18:16 -05:00
parent 8d71447f12
commit 32507fabfd
7 changed files with 353 additions and 34 deletions

View file

@ -1119,11 +1119,13 @@
self.performEpisodeOrganization = function (id, options) {
var url = self.getUrl("Library/FileOrganizations/" + id + "/Episode/Organize", options || {});
var url = self.getUrl("Library/FileOrganizations/" + id + "/Episode/Organize");
return self.ajax({
type: "POST",
url: url
url: url,
data: JSON.stringify(options),
contentType: 'application/json'
});
};