summaryrefslogtreecommitdiff
path: root/static/index.js
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2022-09-04 20:22:03 +0200
committerTom Smeding <tom@tomsmeding.com>2022-09-04 20:23:12 +0200
commit769aa87afb4b764021aa769956bcd000408ce5ca (patch)
tree37f6944a407e235ab33834e8d28265e873c2638b /static/index.js
parent63712199736057d78a9adf19d57a9255aaf05307 (diff)
Sort case-insensitively
Diffstat (limited to 'static/index.js')
-rw-r--r--static/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/index.js b/static/index.js
index 311afc7..ca76f1e 100644
--- a/static/index.js
+++ b/static/index.js
@@ -185,7 +185,7 @@ function insertItem(votes, string) {
var i;
for (i = 0; i < glist.length; i++) {
if (glist[i][0] > votes) continue;
- if (glist[i][0] < votes || glist[i][1] > string) break;
+ if (glist[i][0] < votes || glist[i][1].toLowerCase() > string.toLowerCase()) break;
}
var el = createItemElement(votes, string);
if (i == glist.length) {