jellyfish-web/dashboard-ui/thirdparty/apiclient/connectionmanager.js

20 lines
323 B
JavaScript
Raw Normal View History

2014-10-15 23:26:39 -04:00
if (!window.MediaBrowser) {
window.MediaBrowser = {};
}
MediaBrowser.ConnectionManager = function () {
return function () {
var self = this;
self.getServers = function (currentApiClient) {
};
self.changeServer = function (currentApiClient, server) {
};
};
}();