diff options
Diffstat (limited to 'apps/files/js/upload.js')
-rw-r--r-- | apps/files/js/upload.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files/js/upload.js b/apps/files/js/upload.js deleted file mode 100644 index 518608615e0..00000000000 --- a/apps/files/js/upload.js +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) 2014 - * - * This file is licensed under the Affero General Public License version 3 - * or later. - * - * See the COPYING-README file. - * - */ - -function Upload(fileSelector) { - if ($.support.xhrFileUpload) { - return new XHRUpload(fileSelector.target.files); - } else { - return new FormUpload(fileSelector); - } -} -Upload.target = OC.filePath('files', 'ajax', 'upload.php'); |