share/collection.js: Add a timeout to the hide() call.
[collection4.git] / share / collection.js
index 9968452..e9b376a 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()