projects
/
collection4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b309b2
)
share/collection.js: Add a timeout to the hide() call.
author
Florian Forster
<ff@octo.it>
Mon, 21 Jun 2010 16:53:10 +0000
(18:53 +0200)
committer
Florian Forster
<octo@leeloo.lan.home.verplant.org>
Mon, 21 Jun 2010 16:53:10 +0000
(18:53 +0200)
Otherwise the user won't be able to click the links.
share/collection.js
patch
|
blob
|
history
diff --git
a/share/collection.js
b/share/collection.js
index
9968452
..
e9b376a
100644
(file)
--- a/
share/collection.js
+++ b/
share/collection.js
@@
-58,7
+58,10
@@
$(document).ready(function() {
$("#search-input").blur (function()
{
- $("#search-suggest").hide ();
+ window.setTimeout (function ()
+ {
+ $("#search-suggest").hide ();
+ }, 500);
});
$("#search-input").focus (function()