diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-20 23:22:27 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-20 23:22:27 +0100 |
commit | 110f108f8f0c0067d08bc070c4dee4360c60583a (patch) | |
tree | 4bbb7f7c5566045ca9467e02230c6ffc6d49e9a2 | |
parent | d94eb0dbd330b8bcceccd8e0c5afcf33aa3149a2 (diff) |
JavaScript: Trigger the script.aculo.us autocompleter as quickly as possible.
-rw-r--r-- | logikorr.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logikorr.js b/logikorr.js index 7c32d6e..a0730bf 100644 --- a/logikorr.js +++ b/logikorr.js @@ -95,7 +95,7 @@ YUI().use('node-base', 'io-base', 'io-form', 'io-queue', 'json', function (Y) { completion.setAttribute('class', 'autocomplete'); cell.appendChild(input); cell.appendChild(completion); - new Autocompleter.Local(input, completion, autocompleteList, { 'fullSearch' : true }); + new Autocompleter.Local(input, completion, autocompleteList, { 'fullSearch' : true, 'partialChars': 1 }); var cell = row.insertCell(1); makeScoreInput(cell); |