|
|
@ -596,9 +596,10 @@ $.fn.search = function(parameters) { |
|
|
|
addResult = function(array, result) { |
|
|
|
var |
|
|
|
notResult = ($.inArray(result, results) == -1), |
|
|
|
notFuzzyResult = ($.inArray(result, fuzzyResults) == -1) |
|
|
|
notFuzzyResult = ($.inArray(result, fuzzyResults) == -1), |
|
|
|
notExactResults = ($.inArray(result, exactResults) == -1) |
|
|
|
; |
|
|
|
if(notResult && notFuzzyResult) { |
|
|
|
if(notResult && notFuzzyResult && notExactResults) { |
|
|
|
array.push(result); |
|
|
|
} |
|
|
|
} |
|
|
|