mirror of
https://gitlab.com/commento/commento.git
synced 2025-06-29 22:56:37 -04:00
commento.js: reverse sorting algorithm
This commit is contained in:
@ -588,7 +588,7 @@
|
||||
}
|
||||
|
||||
cur.sort(function(a, b) {
|
||||
return a.score - b.score;
|
||||
return b.score - a.score;
|
||||
});
|
||||
|
||||
var cards = create("div");
|
||||
|
Reference in New Issue
Block a user