mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Searches now have accents replaced if sortLocalCompare is true. Fixes #357
This commit is contained in:
parent
5ae88a9b4f
commit
4bcf3b9003
@ -439,6 +439,8 @@ ts.addWidget({
|
|||||||
}
|
}
|
||||||
xi = !wo.filter_regex.type.test(typeof x) && wo.filter_ignoreCase ? x.toLocaleLowerCase() : x;
|
xi = !wo.filter_regex.type.test(typeof x) && wo.filter_ignoreCase ? x.toLocaleLowerCase() : x;
|
||||||
ff = r; // if r is true, show that row
|
ff = r; // if r is true, show that row
|
||||||
|
// replace accents - see #357
|
||||||
|
v[i] = c.sortLocaleCompare ? ts.replaceAccents(v[i]) : v[i];
|
||||||
// val = case insensitive, v[i] = case sensitive
|
// val = case insensitive, v[i] = case sensitive
|
||||||
val = wo.filter_ignoreCase ? v[i].toLocaleLowerCase() : v[i];
|
val = wo.filter_ignoreCase ? v[i].toLocaleLowerCase() : v[i];
|
||||||
if (wo.filter_functions && wo.filter_functions[i]){
|
if (wo.filter_functions && wo.filter_functions[i]){
|
||||||
|
Loading…
Reference in New Issue
Block a user