allow searching for substrings, i.e. do not autocomplete search for vv to first word starting with vv
This commit is contained in:
parent
9f5af680ed
commit
67302e1a3e
1 changed files with 1 additions and 1 deletions
|
@ -757,7 +757,7 @@ Ox.VideoAnnotationPanel = function(options, self) {
|
||||||
autocomplete: self.words.map(function(word) {
|
autocomplete: self.words.map(function(word) {
|
||||||
return word.value;
|
return word.value;
|
||||||
}),
|
}),
|
||||||
autocompleteReplace: true,
|
autocompleteReplace: false,
|
||||||
autocompleteSelect: true,
|
autocompleteSelect: true,
|
||||||
autocompleteSelectHighlight: true,
|
autocompleteSelectHighlight: true,
|
||||||
autocompleteSelectMax: 10,
|
autocompleteSelectMax: 10,
|
||||||
|
|
Loading…
Reference in a new issue