diff options
author | Friendika <info@friendika.com> | 2011-10-27 19:12:30 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-27 19:12:30 -0700 |
commit | e5a7b3e24b5eccf31be7ef5b78580b599a94952f (patch) | |
tree | 190e705b539c698fdcb5a198c48e0cc6172b16d7 /js | |
parent | 056fe0a3aabecdc3a236ce9350e4e6f54ef52758 (diff) | |
download | volse-hubzilla-e5a7b3e24b5eccf31be7ef5b78580b599a94952f.tar.gz volse-hubzilla-e5a7b3e24b5eccf31be7ef5b78580b599a94952f.tar.bz2 volse-hubzilla-e5a7b3e24b5eccf31be7ef5b78580b599a94952f.zip |
add contact-id to auto-complete response to resolve duplicates
Diffstat (limited to 'js')
-rw-r--r-- | js/fk.autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js index 6a1f1965a..c17d61fc5 100644 --- a/js/fk.autocomplete.js +++ b/js/fk.autocomplete.js @@ -65,7 +65,7 @@ ACPopup.prototype._search = function(){ that.cont.show(); $(data.items).each(function(){ html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick) - that.add(html, this.nick + ' - ' + this.link); + that.add(html, this.nick + '+' + this.id + ' - ' + this.link); }); } else { that.cont.hide(); |