diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-21 17:38:25 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-02-21 17:38:25 +0100 |
commit | 0dd7fd0599e0757abc81677ccbb8d4a6839a5f79 (patch) | |
tree | d5bc4f2cd01fd29cacd2d7f8b71cda97a0e1d9de /apps | |
parent | 0a6e9933fc669a95d874985cea82ed0c8591a025 (diff) | |
download | nextcloud-server-0dd7fd0599e0757abc81677ccbb8d4a6839a5f79.tar.gz nextcloud-server-0dd7fd0599e0757abc81677ccbb8d4a6839a5f79.zip |
IE8 does not support window.onclick
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 8327460cca6..aeb7aedfaee 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){ |