Bootstrap-3-Typeahead
Bootstrap-3-Typeahead copied to clipboard
Accent Insensitive
I try to adapt this : https://github.com/tcrosen/twitter-bootstrap-typeahead/issues/36 to Bootstrap-3-Typeahead. But i can not. Any solutions are welcome ;-)
You can change this in source code:
matcher: function (item) {
var it = this.displayText(item);
return ~it.toLowerCase().indexOf(this.query.toLowerCase();
},
vs
matcher: function (item) {
var it = this.displayText(item);
return ~it.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, "").indexOf(this.query.toLowerCase().normalize('NFD').replace(/[\u0300-\u036f]/g, ""));
},