Work around Chrome's buggy localeCompare function
This commit is contained in:
parent
61c0f974c0
commit
fc3b2c3538
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ Zotero_TranslatorTesters = new function() {
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
strcmp = function (a, b) {
|
strcmp = function (a, b) {
|
||||||
return a.localeCompare(b);
|
return a.toLowerCase().localeCompare(b.toLowerCase());
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue