fixes and optimizations for search

This commit is contained in:
azivner
2018-06-05 22:47:47 -04:00
parent 45d9c7164c
commit e7a504c66b
4 changed files with 18 additions and 4 deletions

View File

@@ -24,6 +24,12 @@ async function showDialog() {
},
minLength: 2
});
$autoComplete.autocomplete("instance")._renderItem = function(ul, item) {
return $("<li>")
.append("<div>" + item.label + "</div>")
.appendTo(ul);
};
}
function getSelectedNotePath() {