Skip to content

Commit

Permalink
Reverse sort
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperDramsch committed Dec 20, 2023
1 parent 335d0d9 commit 0ee38c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ <h1 id="archive-link">Visit the <a href="/archive/">Archive</a></h1>

// Sort coming_confs and past_confs
$("#coming_confs .ConfItem").sort(function (a, b) {
return $(b).attr('cfpDiff') - $(a).attr('cfpDiff');
return $(a).attr('cfpDiff') - $(b).attr('cfpDiff');
}).appendTo($("#coming_confs"));

{% include handle_url_retrieval.js %}
Expand Down

0 comments on commit 0ee38c2

Please sign in to comment.