aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-12-27 09:24:47 +1100
committerRedMatrix <info@friendica.com>2014-12-27 09:24:47 +1100
commitbfc0b00d93c00bbdf02013165041f970ef520841 (patch)
treef7b8d4303cf5dc3d44c64c6cd14fe2ef17fc55a1
parent0130fb077fbea06c0abd6e395adccddcd08a0c99 (diff)
parenta02d155f79b57ff8e9b46f032114be8ff6812d18 (diff)
downloadvolse-hubzilla-bfc0b00d93c00bbdf02013165041f970ef520841.tar.gz
volse-hubzilla-bfc0b00d93c00bbdf02013165041f970ef520841.tar.bz2
volse-hubzilla-bfc0b00d93c00bbdf02013165041f970ef520841.zip
Merge pull request #766 from pafcu/autocomplete
Fix regex in contact autocomplete
-rw-r--r--view/js/autocomplete.js3
1 files changed, 1 insertions, 2 deletions
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,