docs(filter): add missing semi-colon

Closes #4273
This commit is contained in:
Tom Elovie Spruce 2013-10-03 18:11:07 -07:00 committed by Pete Bacon Darwin
parent 55422b88d8
commit 7645e05e4d

View file

@ -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){