From 1ef0c31138a4429fbfc666a7ff96feaced17fa7d Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Mon, 21 Jun 2010 18:53:10 +0200 Subject: [PATCH] share/collection.js: Add a timeout to the hide() call. Otherwise the user won't be able to click the links. --- share/collection.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/collection.js b/share/collection.js index 9968452..e9b376a 100644 --- 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() -- 2.11.0