From 9d003afcad77b22dfe6743b8cf3fdd04e9f0e3d0 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 24 Apr 2009 04:29:59 -0400
Subject: [PATCH] - Fix autocomplete spinning wheel does not disappear (#1485804)

---
 program/js/app.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index eed8861..f031783 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -2574,7 +2574,7 @@
   this.ksearch_query_results = function(results, search)
   {
     // ignore this outdated search response
-    if (search != this.ksearch_value)
+    if (this.ksearch_value && search != this.ksearch_value)
       return;
       
     this.hide_message();

--
Gitblit v1.9.1