1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-apiclient/fileupload.js

13 lines
209 B
JavaScript
Raw Normal View History

2016-08-06 22:56:32 -04:00
define([], function () {
2016-10-02 02:13:04 -04:00
'use strict';
2015-09-10 14:28:22 -04:00
2016-08-06 22:56:32 -04:00
return function () {
2015-09-10 14:28:22 -04:00
var self = this;
2015-09-15 23:55:26 -04:00
self.upload = function (file, name, url) {
2015-09-10 14:28:22 -04:00
2016-08-06 22:56:32 -04:00
return Promise.reject();
2015-09-10 14:28:22 -04:00
};
2016-08-06 22:56:32 -04:00
};
});