зеркало из https://github.com/mozilla/pjs.git
Bug 700389 - Simplify sortByTotalScore. r=zpao
This commit is contained in:
Родитель
8b56f7c9a5
Коммит
6279735b4d
|
@ -163,9 +163,7 @@ FormAutoComplete.prototype = {
|
|||
*/
|
||||
autoCompleteSearch : function (aInputName, aUntrimmedSearchString, aField, aPreviousResult) {
|
||||
function sortBytotalScore (a, b) {
|
||||
let x = a.totalScore;
|
||||
let y = b.totalScore;
|
||||
return ((x > y) ? -1 : ((x < y) ? 1 : 0));
|
||||
return b.totalScore - a.totalScore;
|
||||
}
|
||||
|
||||
if (!this._enabled)
|
||||
|
|
Загрузка…
Ссылка в новой задаче