aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-04 20:45:16 -0800
committerfriendica <info@friendica.com>2015-01-04 20:45:16 -0800
commit074be42e234a9d44ffe7875ffef6eb7a5e22f013 (patch)
treed387d11e38c27986862882beb27e5ae69f6732b2
parentfc72762f52a5c3aec2f06b49153392333cacba2f (diff)
downloadvolse-hubzilla-074be42e234a9d44ffe7875ffef6eb7a5e22f013.tar.gz
volse-hubzilla-074be42e234a9d44ffe7875ffef6eb7a5e22f013.tar.bz2
volse-hubzilla-074be42e234a9d44ffe7875ffef6eb7a5e22f013.zip
regression: autocomplete hovertip with url/address missing - useful for identifying connections based on their site if they have different channels (not clones) on different sites with all other identifying info the same.
-rw-r--r--view/js/autocomplete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index cc14f75d1..e68356057 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -26,7 +26,7 @@ function mysearch(term, callback, backend_url, extra_channels) {
}
function format(item) {
- return "<div class='{0}'><img src='{1}'>{2} ({3})</div>".format(item.taggable, item.photo, item.name, ((item.label) ? item.nick + ' ' + item.label : item.nick) )
+ return "<div class='{0}' title='{4}'><img src='{1}'>{2} ({3})</div>".format(item.taggable, item.photo, item.name, ((item.label) ? item.nick + ' ' + item.label : item.nick), item.link )
}
function replace(item) {