mirror of
https://github.com/9001/copyparty.git
synced 2026-01-15 09:45:18 +10:00
locale-aware sorting of the navpane too
This commit is contained in:
@@ -3429,7 +3429,7 @@ var treectl = (function () {
|
||||
}
|
||||
delete res['a'];
|
||||
var keys = Object.keys(res);
|
||||
keys.sort();
|
||||
keys.sort(function (a, b) { return a.localeCompare(b); });
|
||||
for (var a = 0; a < keys.length; a++) {
|
||||
var kk = keys[a],
|
||||
ks = kk.slice(1),
|
||||
|
||||
Reference in New Issue
Block a user