aboutsummaryrefslogtreecommitdiffstats
path: root/js/fk.autocomplete.js
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-27 19:12:30 -0700
committerFriendika <info@friendika.com>2011-10-27 19:12:30 -0700
commite5a7b3e24b5eccf31be7ef5b78580b599a94952f (patch)
tree190e705b539c698fdcb5a198c48e0cc6172b16d7 /js/fk.autocomplete.js
parent056fe0a3aabecdc3a236ce9350e4e6f54ef52758 (diff)
downloadvolse-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/fk.autocomplete.js')
-rw-r--r--js/fk.autocomplete.js2
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();