diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-04 12:11:32 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-04 12:11:32 -0800 |
commit | 6d3b61f3884d6cf7b2eb68cdd60c713620afabbd (patch) | |
tree | 7051ae377055969aeeed9f4490e8478afaad0b5d /apps/files/js/file-upload.js | |
parent | 0609f30d1c4ab01804d0ecf943c0d9146bb41cb7 (diff) | |
parent | ba1b9df8a9c2da0f46f2b5a587eeb92c8c3d528d (diff) | |
download | nextcloud-server-6d3b61f3884d6cf7b2eb68cdd60c713620afabbd.tar.gz nextcloud-server-6d3b61f3884d6cf7b2eb68cdd60c713620afabbd.zip |
Merge pull request #7011 from owncloud/jshint
Added .jshintrc
Diffstat (limited to 'apps/files/js/file-upload.js')
-rw-r--r-- | apps/files/js/file-upload.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 149e4a9666b..f962a7044a8 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -1,3 +1,13 @@ +/* + * Copyright (c) 2014 + * + * This file is licensed under the Affero General Public License version 3 + * or later. + * + * See the COPYING-README file. + * + */ + /** * The file upload code uses several hooks to interact with blueimps jQuery file upload library: * 1. the core upload handling hooks are added when initializing the plugin, @@ -8,6 +18,8 @@ * - TODO music upload button */ +/* global OC, t, n */ + /** * Function that will allow us to know if Ajax uploads are supported * @link https://github.com/New-Bamboo/example-ajax-upload/blob/master/public/index.html |