rework autocomplete: initial commit

This commit is contained in:
rabuzarus 2016-01-19 18:11:40 +01:00 committed by Roland Haeder
parent e48c446a29
commit 35bd5792bc
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
8 changed files with 1338 additions and 19 deletions

View file

@ -86,7 +86,7 @@ ACPopup.prototype._search = function(){
if (data.tot>0){
that.cont.show();
$(data.items).each(function(){
var html = "<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo, this.name, this.nick);
var html = "<img class='acpopup-img' src='{0}' height='16px' width='16px'> <span class='acpopup-name'>{1}</span> <span class='acpopup-addr'>({2})</span>".format(this.photo, this.name, this.addr);
var nick = this.nick.replace(' ','');
if (this.id!=='') nick += '+' + this.id;
that.add(html, nick + ' - ' + this.link);