- Fix autocomplete spinning wheel does not disappear (#1485804)

release-0.6
alecpl 15 years ago
parent 4b2be228e2
commit 9d003afcad

@ -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)

@ -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();

Loading…
Cancel
Save