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

13 lines
209 B
JavaScript
Raw Normal View History

2016-08-06 19:56:32 -07:00
define([], function () {
2016-10-01 23:13:04 -07:00
'use strict';
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
};
});