Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperDramsch committed Dec 20, 2023
1 parent 7ab6820 commit 6758f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ <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');
}).reverse().appendTo($("#coming_confs"));
return $(a).attr('cfpDiff') - $(b).attr('cfpDiff');
}).appendTo($("#coming_confs"));

{% include handle_url_retrieval.js %}

Expand Down

0 comments on commit 6758f4c

Please sign in to comment.