X-Git-Url: https://git.r.bdr.sh/rbdr/crowdantine/blobdiff_plain/6c43b90f4ac8ae47cd26076db44e912891673e77..910bdeaeb023ed509452f9ff80bfbbf626b06fbc:/index.html?ds=sidebyside
diff --git a/index.html b/index.html
index 077a8e0..d839fe2 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));
});