diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-06 10:28:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 10:28:26 +0200 |
commit | ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5 (patch) | |
tree | e417a60ccd830738dae1a6adc6b778fb0c4548ab /apps/files/js/jquery.fileupload.js | |
parent | 405edfa90c851937af13e26a82754310ded0072a (diff) | |
parent | 9d26671f05275055619960a66981201ed660bdd2 (diff) | |
download | nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.tar.gz nextcloud-server-ba99f1ca0ffd128c1cd3d13c0a5735fe14bc12e5.zip |
Merge pull request #33895 from nextcloud/fix/fix-apps-typos
Fix typos in apps/ subdirectory
Diffstat (limited to 'apps/files/js/jquery.fileupload.js')
-rw-r--r-- | apps/files/js/jquery.fileupload.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/js/jquery.fileupload.js b/apps/files/js/jquery.fileupload.js index cc0c97ba3ed..9b382ccae39 100644 --- a/apps/files/js/jquery.fileupload.js +++ b/apps/files/js/jquery.fileupload.js @@ -420,7 +420,7 @@ _initProgressListener: function (options) { var that = this, xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); - // Accesss to the native XHR object is required to add event listeners + // Access to the native XHR object is required to add event listeners // for the upload progress event: if (xhr.upload) { $(xhr.upload).bind('progress', function (e) { @@ -1060,7 +1060,7 @@ data.fileInputClone = inputClone; $('<form></form>').append(inputClone)[0].reset(); // Detaching allows to insert the fileInput on another form - // without loosing the file input value: + // without losing the file input value: input.after(inputClone).detach(); // If the fileInput had focus before it was detached, // restore focus to the inputClone. @@ -1138,7 +1138,7 @@ dirReader = entry.createReader(); readEntries(); } else { - // Return an empy list for file system items + // Return an empty list for file system items // other than files or directories: dfd.resolve([]); } |