Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Changed -- to conform to JSLint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonweekes committed Oct 3, 2014
1 parent 35f7280 commit d63a124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search/SearchModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ define(function (require, exports, module) {
// Remove final result if there have been over MAX_TOTAL_RESULTS found
if (this.numMatches > SearchModel.MAX_TOTAL_RESULTS) {
this.results[fullpath].matches.pop();
this.numMatches--;
this.numMatches -= 1;
this.exceedsMaximum = true;
}
}
}
};

Expand Down

0 comments on commit d63a124

Please sign in to comment.