diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-25 04:34:13 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-02-25 04:34:13 -0800 |
commit | 7c30c1a2e8404068e1b752404811b33dc89a80fc (patch) | |
tree | ccd46389c853a6e21831374c9ccd383c3c7e1461 /apps | |
parent | 9ceae51091f31d9f33f9dff5c6b2d9faa1b6fe36 (diff) | |
parent | 0dd7fd0599e0757abc81677ccbb8d4a6839a5f79 (diff) | |
download | nextcloud-server-7c30c1a2e8404068e1b752404811b33dc89a80fc.tar.gz nextcloud-server-7c30c1a2e8404068e1b752404811b33dc89a80fc.zip |
Merge pull request #1833 from owncloud/fix_1465
Fix 1465
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6801fb59910..74b2e48fb02 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -524,7 +524,7 @@ $(document).ready(function() { crumb.text(text); } - $(window).click(function(){ + $(document).click(function(){ $('#new>ul').hide(); $('#new').removeClass('active'); $('#new li').each(function(i,element){ |