move user image into profile settings

This commit is contained in:
Luke Pulverenti 2014-10-15 23:26:39 -04:00
parent c2ea67d056
commit 53cd8b0eb8
36 changed files with 376 additions and 372 deletions

View file

@ -0,0 +1,20 @@
if (!window.MediaBrowser) {
window.MediaBrowser = {};
}
MediaBrowser.ConnectionManager = function () {
return function () {
var self = this;
self.getServers = function (currentApiClient) {
};
self.changeServer = function (currentApiClient, server) {
};
};
}();