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-05-24 12:58:12 -04:00
parent 9e44f71761
commit bbe5c49524
10 changed files with 69 additions and 49 deletions

View file

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.1.56",
"_release": "1.1.56",
"version": "1.1.57",
"_release": "1.1.57",
"_resolution": {
"type": "version",
"tag": "1.1.56",
"commit": "f0c16b99c8523abcbd5f514d938e520448d6349d"
"tag": "1.1.57",
"commit": "80da1038922e66fc43774cb9e5a1df999f303295"
},
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
"_target": "^1.1.51",

View file

@ -2980,6 +2980,19 @@
return self.getJSON(url);
};
self.getGameSystems = function () {
var options = {};
if (userId) {
options.userId = userId;
}
var url = self.getUrl("Games/SystemSummaries", options);
return self.getJSON(url);
};
self.getAdditionalVideoParts = function (userId, itemId) {
if (!itemId) {