diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 22:39:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-22 22:39:28 +0200 |
commit | ca3771f8fd761a51ea7bbe123dcb16c5da7f4045 (patch) | |
tree | fe7f50df89065f8d815ac1eb97a28b34aa7a4be5 /apps | |
parent | bf46e0c3171ed8546a64b5907e02f3ee1fe0a5a4 (diff) | |
download | nextcloud-server-ca3771f8fd761a51ea7bbe123dcb16c5da7f4045.tar.gz nextcloud-server-ca3771f8fd761a51ea7bbe123dcb16c5da7f4045.zip |
fixing js syntax error
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/file-upload.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 936487cad3c..17673dacfd3 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -21,13 +21,13 @@ function supportAjaxUploadWithProgress() { var fi = document.createElement('INPUT'); fi.type = 'file'; return 'files' in fi; - }; + } // Are progress events supported? function supportAjaxUploadProgressEvents() { var xhr = new XMLHttpRequest(); return !! (xhr && ('upload' in xhr) && ('onprogress' in xhr.upload)); - }; + } // Is FormData supported? function supportFormData() { |