forked from 0x2620/pandora
fix #1692 (Autocomplete menu (title): '<' appears as '<')
This commit is contained in:
parent
272265d95f
commit
a12e1d2450
1 changed files with 3 additions and 1 deletions
|
@ -132,7 +132,9 @@ pandora.ui.findElement = function() {
|
|||
sort: findKey.autocompleteSort,
|
||||
value: value
|
||||
}, function(result) {
|
||||
callback(result.data.items);
|
||||
callback(result.data.items.map(function(item) {
|
||||
return Ox.decodeHTMLEntities(item);
|
||||
}));
|
||||
});
|
||||
} : null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue