aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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){