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 {
|
||||
strcmp = function (a, b) {
|
||||
return a.localeCompare(b);
|
||||
return a.toLowerCase().localeCompare(b.toLowerCase());
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue