summaryrefslogtreecommitdiff
path: root/bundle.js
diff options
context:
space:
mode:
Diffstat (limited to 'bundle.js')
-rw-r--r--bundle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.js b/bundle.js
index 07ad2db..67a556b 100644
--- a/bundle.js
+++ b/bundle.js
@@ -23102,7 +23102,7 @@ function sortByColor() {
}
function sortByFrequency() {
els.sort(function (a, b) {
- return a.freq < b.freq ? -1 : a.freq == b.freq ? 0 : 1;
+ return a.freq > b.freq ? -1 : a.freq == b.freq ? 0 : 1;
}).map(resort);
}
function resort(tuple, i) {