summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-02-25 04:34:13 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-02-25 04:34:13 -0800
commit7c30c1a2e8404068e1b752404811b33dc89a80fc (patch)
treeccd46389c853a6e21831374c9ccd383c3c7e1461 /core
parent9ceae51091f31d9f33f9dff5c6b2d9faa1b6fe36 (diff)
parent0dd7fd0599e0757abc81677ccbb8d4a6839a5f79 (diff)
downloadnextcloud-server-7c30c1a2e8404068e1b752404811b33dc89a80fc.tar.gz
nextcloud-server-7c30c1a2e8404068e1b752404811b33dc89a80fc.zip
Merge pull request #1833 from owncloud/fix_1465
Fix 1465
Diffstat (limited to 'core')
-rw-r--r--core/js/js.js2
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);
});