diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |