update sync objects

This commit is contained in:
Luke Pulverenti 2016-08-06 22:56:32 -04:00
parent 866ecf78b4
commit c71f597c58
14 changed files with 250 additions and 435 deletions

View file

@ -1,22 +1,12 @@
(function (globalScope) {
define([], function () {
function fileUpload() {
return function () {
var self = this;
self.upload = function (file, name, url) {
return new Promise(function (resolve, reject) {
reject();
});
return Promise.reject();
};
}
if (!globalScope.MediaBrowser) {
globalScope.MediaBrowser = {};
}
globalScope.MediaBrowser.FileUpload = fileUpload;
})(this);
};
});