Commit 49e4c1c2 authored by Mathieu Doyon's avatar Mathieu Doyon

non case-sensitive filtering

Signed-off-by: 's avatarMathieu Doyon <mathieu.doyon@studiofrenetic.com>
parent 0086264b
......@@ -442,7 +442,7 @@
var options = [];
$.each(this.originalOptions, function(index, option) {
if (option.text.substring(0, query.length) == query) options.push(option);
if (option.text.substring(0, query.length).toLowerCase() == query.toLowerCase()) options.push(option);
});
return options;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment