diff --git a/index.html b/index.html index 96ca994c..f5d39a92 100755 --- a/index.html +++ b/index.html @@ -934,7 +934,7 @@ $("#e18,#e18_2").select2();
true
if search term matches the text, or false
otherwisefunction(term, text) { return text.toUpperCase().indexOf(term.toUpperCase())>0; }
+ function(term, text) { return text.toUpperCase().indexOf(term.toUpperCase())>=0; }
true
if search term matches the text, or false
otherwisefunction(term, text) { return text.toUpperCase().indexOf(term.toUpperCase())>0; }
+ function(term, text) { return text.toUpperCase().indexOf(term.toUpperCase())>=0; }