From a02d155f79b57ff8e9b46f032114be8ff6812d18 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Wed, 24 Dec 2014 08:30:35 +0100 Subject: Fix regex in contact autocomplete --- view/js/autocomplete.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'view/js/autocomplete.js') diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index ba71bb2f5..7c3145769 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -7,7 +7,6 @@ function mysearch(term, callback, backend_url) { var postdata = { start:0, count:100, - //search:term.substring(1), search:term, type:'c', } @@ -40,7 +39,7 @@ function replace(item) { // Autocomplete contacts contacts = { - match: /(^|\s)(@!?)(\w{2,})$/, + match: /(^|\s)(@\!*)([^ \n]+)$/, index: 3, search: function(term, callback) { mysearch(term, callback, backend_url); }, replace: replace, -- cgit v1.2.3