aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Elovie Spruce2013-10-03 18:11:07 -0700
committerPete Bacon Darwin2013-10-05 21:44:14 +0100
commit7645e05e4d7143316cb169b221030e74498f0a1a (patch)
treed359df0a51fd76946597053f140532c7a518133c
parent55422b88d83491c8660ee61f023568e182b349e1 (diff)
downloadangular.js-7645e05e4d7143316cb169b221030e74498f0a1a.tar.bz2
docs(filter): add missing semi-colon
Closes #4273
-rw-r--r--src/ng/filter/filter.js2
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){