forked from Public/pics
AutoSuggest: fix click/append event
Keyboard was fine, it was just mouse events that were broken ^^'
This commit is contained in:
parent
3cf281b24d
commit
6087ebe249
@ -124,7 +124,7 @@ class AutoSuggest {
|
||||
node.innerHTML = this.highlightMatches(query_tokens, item.label);
|
||||
node.jsondata = item;
|
||||
node.addEventListener('click', event => {
|
||||
this.appendCallback(event.target.jsondata);
|
||||
this.appendCallback(node.jsondata);
|
||||
this.closeContainer();
|
||||
this.clearInput();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user