2 Commits

Author SHA1 Message Date
Adhityaa Chandrasekar
41a5c675bf release: v1.1.3 2018-09-28 09:39:38 -04:00
Adhityaa Chandrasekar
ac9f896a22 commento.js: reverse sorting algorithm 2018-09-28 09:39:07 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
package main
var edition = "ce"
var version = "v1.1.2"
var version = "v1.1.3"

View File

@@ -588,7 +588,7 @@
}
cur.sort(function(a, b) {
return a.score - b.score;
return b.score - a.score;
});
var cards = create("div");