diff options
author | alecpl <alec@alec.pl> | 2010-02-22 11:26:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-02-22 11:26:25 +0000 |
commit | 812abdd7973810690969c64a8d03513a7cba8a56 (patch) | |
tree | 527c6d58129e1aaa3f55e5077f7594de6acb46e9 /program/js/app.js | |
parent | eb27aad897b8b4bf4117fc17bec725e86094dac3 (diff) |
- Fix email address auto-completion shows regexp pattern (#1486258)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js index 747a69f4e..c5bac8554 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2806,8 +2806,8 @@ function rcube_webmail() this.ksearch_display_results = function (a_results) { // display search results - if (a_results.length && this.ksearch_input) { - var p, ul, li; + if (a_results.length && this.ksearch_input && this.ksearch_value) { + var p, ul, li, s_val = this.ksearch_value; // create results pane if not present if (!this.ksearch_pane) { @@ -2819,11 +2819,11 @@ function rcube_webmail() // remove all search results ul = this.ksearch_pane.__ul; ul.innerHTML = ''; - + // add each result line to list for (i=0; i<a_results.length; i++) { li = document.createElement('LI'); - li.innerHTML = a_results[i].replace(new RegExp('('+this.ksearch_value+')', 'ig'), '##$1%%').replace(/</g, '<').replace(/>/g, '>').replace(/##([^%]+)%%/g, '<b>$1</b>'); + li.innerHTML = a_results[i].replace(new RegExp('('+s_val+')', 'ig'), '##$1%%').replace(/</g, '<').replace(/>/g, '>').replace(/##([^%]+)%%/g, '<b>$1</b>'); li.onmouseover = function(){ ref.ksearch_select(this); }; li.onmouseup = function(){ ref.ksearch_click(this) }; li._rcm_id = i; |