Navigation Menu

Skip to content

Commit

Permalink
Fix indents
Browse files Browse the repository at this point in the history
  • Loading branch information
darashi committed Aug 9, 2012
1 parent 3d6878a commit f59eb8e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/server.js
Expand Up @@ -70,11 +70,11 @@ app.get('/search', function(request, response, next) {
}
var locals = {
query: query,
records: results.hits.hit,
num_found: results.hits.found,
from: results.hits.start + 1,
to: results.hits.start + results.hits.hit.length,
num_showing: results.hits.hit.length
records: results.hits.hit,
num_found: results.hits.found,
from: results.hits.start + 1,
to: results.hits.start + results.hits.hit.length,
num_showing: results.hits.hit.length
};

return response.render('search.jade', locals);
Expand Down

0 comments on commit f59eb8e

Please sign in to comment.