Code

share/collection.js: Add a timeout to the hide() call.
authorFlorian Forster <ff@octo.it>
Mon, 21 Jun 2010 16:53:10 +0000 (18:53 +0200)
committerFlorian 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

index 99684524192ad31a08f0e67a9be5326134b9eef1..e9b376abd3135e09134c935af82929586069a453 100644 (file)
@@ -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()