diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-04-07 00:08:49 +0200 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-04-07 00:08:49 +0200 |
| commit | 910bdeaeb023ed509452f9ff80bfbbf626b06fbc (patch) | |
| tree | 1772241591b49c37b96fe9e091280558cb6967cb /index.html | |
| parent | 636c2ad49bd1a4cfdba7e8c6a75691819cc2fdc1 (diff) | |
Sort by votes
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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)); }); |