log statement commented out
This commit is contained in:
parent
c5b1d44fe0
commit
6cc0a63b94
1 changed files with 4 additions and 3 deletions
|
|
@ -682,10 +682,11 @@ function textareaAutocomplete(textarea, suggestions) {
|
||||||
const lastWord = match[0];
|
const lastWord = match[0];
|
||||||
const tr = textarea.parentNode.parentNode.parentNode;
|
const tr = textarea.parentNode.parentNode.parentNode;
|
||||||
let type = tr.querySelector('.type_output').value
|
let type = tr.querySelector('.type_output').value
|
||||||
console.log(">>>>>>>>> type: " + type);
|
// console.log(">>>>>>>>> type: " + type);
|
||||||
|
// console.log(">>>>>>>>> suggestions: " + JSON.stringify(suggestions));
|
||||||
|
// console.log(">>>>>>>>> lastWord: " + lastWord);
|
||||||
const matches = suggestions.filter(s => s.command.startsWith(lastWord) && (String(s.type) == String(type) || String(s.type) == '0' )).map(s => s.command);
|
const matches = suggestions.filter(s => s.command.startsWith(lastWord) && (String(s.type) == String(type) || String(s.type) == '0' )).map(s => s.command);
|
||||||
// const matches = suggestions.filter(s => s.startsWith(lastWord));
|
// console.log(">>>>>>>>> matches: " + JSON.stringify(matches));
|
||||||
console.log(">>>>>>>>> matches: " + JSON.stringify(matches));
|
|
||||||
showSuggestions(matches, autocompleteList);
|
showSuggestions(matches, autocompleteList);
|
||||||
} else {
|
} else {
|
||||||
hideSuggestions(autocompleteList);
|
hideSuggestions(autocompleteList);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue