]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing js syntax error
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 22 Oct 2013 20:39:28 +0000 (22:39 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 22 Oct 2013 20:39:28 +0000 (22:39 +0200)
apps/files/js/file-upload.js

index 936487cad3c51806bcafda08b6f3e6bcdf5bf4ac..17673dacfd31da762fdbe45fd3c04ec636961616 100644 (file)
@@ -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() {