diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2017-10-12 14:56:20 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-10-12 14:56:20 +0200 |
commit | 1cfd85339c09fb5db742d3efe84b664f400ab184 (patch) | |
tree | 505ff88364364b384fd33a0fdb1aa9155ea5d35d | |
parent | 7749b42e49155d6a905a8d16b2f53f965633e9f9 (diff) | |
download | bugzilla-1cfd85339c09fb5db742d3efe84b664f400ab184.tar.gz bugzilla-1cfd85339c09fb5db742d3efe84b664f400ab184.tar.xz |
Bug 1405754 - Autocomplete failing at random for some nicks (including, and especially bz)
Avoid caching search results.
-rw-r--r-- | js/field.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/field.js b/js/field.js index b514fa53c..85011342d 100644 --- a/js/field.js +++ b/js/field.js @@ -720,6 +720,7 @@ $(function() { paramName: 'match', deferRequestBy: 250, minChars: 2, + noCache: true, tabDisabled: true, autoSelectFirst: true, triggerSelectOnValidInput: false, |