diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-24 08:29:59 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-24 08:29:59 +0000 |
| commit | 145b1344c77b96a75a4009b9437296a32a3381c0 (patch) | |
| tree | a2f484b9586c1daa0ae3e3d1225f503f34e0e948 | |
| parent | 0d6b31100d8b2ab8432decfe59552d8c60731d76 (diff) | |
- Fix autocomplete spinning wheel does not disappear (#1485804)
git-svn-id: https://svn.roundcube.net/trunk@2423 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 90b5eb6e0..711cf8da5 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix autocomplete spinning wheel does not disappear (#1485804) - Added log_date_format option (#1485709) - Fix text wrapping in HTML editor after switching from plain text to HTML (#1485521) - Fix auto-complete function hangs with plus sign (#1485815) diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index eed88618d..f0317837d 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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(); |
