aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorbraxtonhall2022-10-24 07:13:23 +0000
committerbraxtonhall2022-10-24 07:13:23 +0000
commitb9ab257c2d46a832e0b3bb904bc40e59daa42481 (patch)
tree9d40e29bf1e07fbc56193f0ff342753bf6c0a575 /index.html
parentbb4dd5b33e782d2c385c3393af783a8dd36770c4 (diff)
Make name sorting independent of case
Diffstat (limited to 'index.html')
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index cbbc280..b3a7b9c 100644
--- a/index.html
+++ b/index.html
@@ -80,7 +80,7 @@
}).append($("<code>").text(entry.name)),
);
- const cmpName = (a, b) => a.name < b.name ? -1 : 1;
+ const cmpName = (a, b) => a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1;
$(document).ready(
_ => getContributors()