Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/search
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-02-21 20:38:25 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-02-21 20:38:25 +0400
commit0dd7fd0599e0757abc81677ccbb8d4a6839a5f79 (patch)
treed5bc4f2cd01fd29cacd2d7f8b71cda97a0e1d9de /search
parent0a6e9933fc669a95d874985cea82ed0c8591a025 (diff)
IE8 does not support window.onclick
Diffstat (limited to 'search')
-rw-r--r--search/js/result.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/search/js/result.js b/search/js/result.js
index cadb0d0aabe..78fa8efc8e9 100644
--- a/search/js/result.js
+++ b/search/js/result.js
@@ -28,7 +28,7 @@ OC.search.showResults=function(results){
OC.search.hide();
event.stopPropagation();
});
- $(window).click(function(event){
+ $(document).click(function(event){
OC.search.hide();
});
OC.search.lastResults=results;