diff options
| author | Tom Elovie Spruce | 2013-10-03 18:11:07 -0700 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-10-05 21:44:14 +0100 | 
| commit | 7645e05e4d7143316cb169b221030e74498f0a1a (patch) | |
| tree | d359df0a51fd76946597053f140532c7a518133c | |
| parent | 55422b88d83491c8660ee61f023568e182b349e1 (diff) | |
| download | angular.js-7645e05e4d7143316cb169b221030e74498f0a1a.tar.bz2 | |
docs(filter): add missing semi-colon
Closes #4273
| -rw-r--r-- | src/ng/filter/filter.js | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/filter/filter.js b/src/ng/filter/filter.js index be01b1b3..b55e11f4 100644 --- a/src/ng/filter/filter.js +++ b/src/ng/filter/filter.js @@ -129,7 +129,7 @@ function filterFilter() {        default:          comperator = function(obj, text) {            text = (''+text).toLowerCase(); -          return (''+obj).toLowerCase().indexOf(text) > -1 +          return (''+obj).toLowerCase().indexOf(text) > -1;          };      }      var search = function(obj, text){  | 
