Browse Source

pedantry: fix indentation and code comment

pull/140/head
Peter Johnson 10 years ago
parent
commit
d80008d098
  1. 13
      query/search.js

13
query/search.js

@ -18,16 +18,15 @@ function generate( params ){
query = queries.bbox ( centroid, { size: params.size, bbox: params.bbox } );
}
// add search condition to distance query
// add search condition to filtered query
query.query.filtered.query = {
'bool': {
'must': [{
'multi_match': {
'query': params.input,
'fields': [ 'name.*' ]
}
'multi_match': {
'query': params.input,
'fields': [ 'name.*' ]
}
]
}]
}
};
@ -39,7 +38,7 @@ function generate( params ){
var match = {};
match[admin_field] = params.input_admin;
query.query.filtered.query.bool.should.push({
'match': match
'match': match
});
});
}

Loading…
Cancel
Save