summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-09-23 07:48:21 +0000
committeralecpl <alec@alec.pl>2011-09-23 07:48:21 +0000
commitf8ca748ab84ed267aef9a95da5bc709da96af3cd (patch)
treea3d26944746acb4eda44c217c42a05cbde4fccac
parentebee2ab26ed69cb2fabd1b68828ae52c3783319d (diff)
- Fix check if new search value contains old one and previous search was empty in autocomplete
-rw-r--r--program/js/app.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 74c602eea..40aa76f98 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3615,7 +3615,8 @@ function rcube_webmail()
var cpos = this.get_caret_pos(this.ksearch_input),
p = inp_value.lastIndexOf(',', cpos-1),
q = inp_value.substring(p+1, cpos),
- min = this.env.autocomplete_min_length;
+ min = this.env.autocomplete_min_length,
+ ac = this.ksearch_data;
// trim query string
q = $.trim(q);
@@ -3641,8 +3642,8 @@ function rcube_webmail()
if (!q.length)
return;
- // ...new search value contains old one and previous search result was empty
- if (old_value && old_value.length && this.env.contacts && !this.env.contacts.length && q.indexOf(old_value) == 0)
+ // ...new search value contains old one and previous search was not finished or its result was empty
+ if (old_value && old_value.length && q.indexOf(old_value) == 0 && (!ac || !ac.num) && this.env.contacts && !this.env.contacts.length)
return;
var i, lock, source, xhr, reqid = new Date().getTime(),
@@ -3650,7 +3651,8 @@ function rcube_webmail()
sources = props && props.sources ? props.sources : [],
action = props && props.action ? props.action : 'mail/autocomplete';
- this.ksearch_data = {id: reqid, sources: sources.slice(), action: action, locks: [], requests: []};
+ this.ksearch_data = {id: reqid, sources: sources.slice(), action: action,
+ locks: [], requests: [], num: sources.length};
for (i=0; i<threads; i++) {
source = this.ksearch_data.sources.shift();
@@ -3735,6 +3737,7 @@ function rcube_webmail()
// run next parallel search
if (data.id == reqid) {
+ data.num--;
if (maxlen > 0 && data.sources.length) {
var lock, xhr, source = data.sources.shift();
if (source) {