diff options
author | alecpl <alec@alec.pl> | 2009-04-24 08:29:59 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-24 08:29:59 +0000 |
commit | 9d003afcad77b22dfe6743b8cf3fdd04e9f0e3d0 (patch) | |
tree | 55dbcfe483f7f54b61606e8b7dc010a19a39e71f /program/js/app.js | |
parent | 4b2be228e2c1cfb05811ea8edc8e575ec53d69c6 (diff) |
- Fix autocomplete spinning wheel does not disappear (#1485804)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | 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 eed88618d..f0317837d 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2574,7 +2574,7 @@ function rcube_webmail() 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(); |