jellyfin-web/dashboard-ui/bower_components/emby-apiclient/fileupload.js

12 lines
191 B
JavaScript
Raw Normal View History

2016-08-06 19:56:32 -07:00
define([], function () {
2015-09-10 11:28:22 -07:00
2016-08-06 19:56:32 -07:00
return function () {
2015-09-10 11:28:22 -07:00
var self = this;
2015-09-15 20:55:26 -07:00
self.upload = function (file, name, url) {
2015-09-10 11:28:22 -07:00
2016-08-06 19:56:32 -07:00
return Promise.reject();
2015-09-10 11:28:22 -07:00
};
2016-08-06 19:56:32 -07:00
};
});