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 /core/js | |
parent | 0a6e9933fc669a95d874985cea82ed0c8591a025 (diff) | |
download | nextcloud-server-0dd7fd0599e0757abc81677ccbb8d4a6839a5f79.tar.gz nextcloud-server-0dd7fd0599e0757abc81677ccbb8d4a6839a5f79.zip |
IE8 does not support window.onclick
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 6d5d65403fb..e373fca8865 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -669,7 +669,7 @@ $(document).ready(function(){ $('#settings #expanddiv').click(function(event){ event.stopPropagation(); }); - $(window).click(function(){//hide the settings menu when clicking outside it + $(document).click(function(){//hide the settings menu when clicking outside it $('#settings #expanddiv').slideUp(200); }); |