summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/field.js19
1 files changed, 18 insertions, 1 deletions
diff --git a/js/field.js b/js/field.js
index d8ede471b..04633baaa 100644
--- a/js/field.js
+++ b/js/field.js
@@ -792,7 +792,24 @@ $(function() {
.each(function() {
var that = $(this);
that.devbridgeAutocomplete({
- lookup: BUGZILLA.autocomplete_values[that.data('values')],
+ lookup: function(query, done) {
+ var values = BUGZILLA.autocomplete_values[that.data('values')];
+ query = query.toLowerCase();
+ var matchStart =
+ $.grep(values, function(value) {
+ return value.toLowerCase().substr(0, query.length) === query;
+ });
+ var matchSub =
+ $.grep(values, function(value) {
+ return value.toLowerCase().indexOf(query) !== -1 &&
+ $.inArray(value, matchStart) === -1;
+ });
+ var suggestions =
+ $.map($.merge(matchStart, matchSub), function(suggestion) {
+ return { value: suggestion };
+ });
+ done({ suggestions: suggestions });
+ },
tabDisabled: true,
delimiter: /,\s*/,
minChars: 0,