X-Git-Url: https://git.r.bdr.sh/rbdr/crowdantine/blobdiff_plain/6c43b90f4ac8ae47cd26076db44e912891673e77..a730acfcd270f92253265452e757bbbf8de7261a:/index.html diff --git a/index.html b/index.html index 077a8e0..3a660d3 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@ var generateProposalHTML = function(proposal) { var listItem = document.createElement('li'); - listItem.innerHTML = proposal.title + ' (' + proposal.total_occurrences + ' votes) I agree. ' + listItem.innerHTML = proposal.title + ' (' + proposal.total_occurrences + ' votes) I agree. ' return listItem; }; @@ -45,7 +45,9 @@ const container = document.getElementById('proposals'); - parsedResponse.result.items.forEach((proposal) => { + parsedResponse.result.items + .sort((a, b) => b.total_occurrences - a.total_occurrences) + .forEach((proposal) => { container.appendChild(generateProposalHTML(proposal)); }); @@ -127,12 +129,12 @@
Vote on the recommendations, or add one.
-