aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.WebDashboard/ApiClient.js
diff options
context:
space:
mode:
authorTechywarrior <techywarrior@gmail.com>2013-04-28 11:48:45 -0700
committerTechywarrior <techywarrior@gmail.com>2013-04-28 11:48:45 -0700
commit13d7090dc79a043c1951fc2fe31ac86b479920db (patch)
tree55b3ca94c57d7030a34d796106acc701dc0c39c5 /MediaBrowser.WebDashboard/ApiClient.js
parent3b55e193efd18294d66893ebbea5e8ebca515509 (diff)
parente8c637c47b6376189243c1940b604826f7df755a (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.WebDashboard/ApiClient.js')
-rw-r--r--MediaBrowser.WebDashboard/ApiClient.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.WebDashboard/ApiClient.js b/MediaBrowser.WebDashboard/ApiClient.js
index 9999c0fe0..3c5307783 100644
--- a/MediaBrowser.WebDashboard/ApiClient.js
+++ b/MediaBrowser.WebDashboard/ApiClient.js
@@ -1733,7 +1733,7 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
});
};
- self.getVideoBackdrops = function (userId, itemId) {
+ self.getThemeVideos = function (userId, itemId) {
if (!userId) {
throw new Error("null userId");
@@ -1742,7 +1742,7 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout) {
throw new Error("null itemId");
}
- var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/VideoBackdrops");
+ var url = self.getUrl("Users/" + userId + "/Items/" + itemId + "/ThemeVideos");
return self.ajax({
type: "GET",