From 9eaa85e9ec0d2c7d562d7e29e7ff027b18485982 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 8 Jun 2015 11:32:04 +0800 Subject: Bug 1171826: sort keywords by "start with" then "substring" --- js/field.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'js') 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, -- cgit v1.2.3-24-g4f1b