added toLowerCase() call so we can use "LIKE".

This commit is contained in:
T.J. Barber 2013-09-10 17:53:19 -05:00
parent 3e6fc36289
commit 337bf6b8d9

View File

@ -124,7 +124,7 @@ define(function(require, exports) {
}
return this;
}
if (!_.contains(operators, operator)) {
if (!_.contains(operators, operator.toLowerCase())) {
value = operator;
operator = '=';
}