From 812abdd7973810690969c64a8d03513a7cba8a56 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 22 Feb 2010 11:26:25 +0000 Subject: - Fix email address auto-completion shows regexp pattern (#1486258) --- program/js/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'program/js') 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/g, '>').replace(/##([^%]+)%%/g, '$1'); + li.innerHTML = a_results[i].replace(new RegExp('('+s_val+')', 'ig'), '##$1%%').replace(//g, '>').replace(/##([^%]+)%%/g, '$1'); li.onmouseover = function(){ ref.ksearch_select(this); }; li.onmouseup = function(){ ref.ksearch_click(this) }; li._rcm_id = i; -- cgit v1.2.3