diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-03-09 15:14:05 +0100 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2016-03-09 15:14:05 +0100 |
commit | 692f312513158edf4cf99607e6d5437d139003c7 (patch) | |
tree | 9dd8b7e8d384c8297acc1b9c1e9eaf7283e8e073 /apps/files/js/jquery.fileupload.js | |
parent | d0a70a9776290b419abe14d297fa179b56839846 (diff) | |
download | nextcloud-server-692f312513158edf4cf99607e6d5437d139003c7.tar.gz nextcloud-server-692f312513158edf4cf99607e6d5437d139003c7.zip |
apps/files: Fix typos in comments (found and fixed by codespell)
This contribution is AGPL and MIT licensed.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'apps/files/js/jquery.fileupload.js')
-rw-r--r-- | apps/files/js/jquery.fileupload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/jquery.fileupload.js b/apps/files/js/jquery.fileupload.js index f9f6cc3a382..d7f19b17550 100644 --- a/apps/files/js/jquery.fileupload.js +++ b/apps/files/js/jquery.fileupload.js @@ -942,7 +942,7 @@ var inputClone = input.clone(true); $('<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(); // Avoid memory leaks with the detached file input: $.cleanData(input.unbind('remove')); |