aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/autocomplete.js
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2015-01-20 22:19:51 +0100
committermarijus <mario@mariovavti.com>2015-01-20 22:19:51 +0100
commit43326a26b742430674b92347eb1e4ad8e1a16538 (patch)
treed7920bb89a191fd181c8ea0440acb60eda33c3e4 /view/js/autocomplete.js
parent5ee815b2fa0b46864972a60e0171e14f91fbd2b5 (diff)
downloadvolse-hubzilla-43326a26b742430674b92347eb1e4ad8e1a16538.tar.gz
volse-hubzilla-43326a26b742430674b92347eb1e4ad8e1a16538.tar.bz2
volse-hubzilla-43326a26b742430674b92347eb1e4ad8e1a16538.zip
css fixes - hopefully
Diffstat (limited to 'view/js/autocomplete.js')
-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 0e2392976..1c524789d 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -56,7 +56,7 @@ function contact_format(item) {
var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick)
if(typeof desc === 'undefined') desc = '';
if(desc) desc = ' ('+desc+')';
- return "<div class='{0}' title='{4}'><img src='{1}'><b>{2}</b><br>{3}<div class='clear'></div></div>".format(item.taggable, item.photo, item.name, desc, item.link)
+ return "<div class='{0}' title='{4}'><img src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span><div class='clear'></div></div>".format(item.taggable, item.photo, item.name, desc, item.link)
}
else
return "<div>"+item.text+"</div>"