aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/upload.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/js/upload.js')
-rw-r--r--apps/files/js/upload.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/files/js/upload.js b/apps/files/js/upload.js
deleted file mode 100644
index 90020e3dbab..00000000000
--- a/apps/files/js/upload.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * SPDX-FileCopyrightText: 2013-2014 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
-
-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');