Created
November 22, 2023 22:44
-
-
Save pasadinhas/d360950472987d4feeff754d223b1e7c to your computer and use it in GitHub Desktop.
Futbin - Sort SBCs by Approval
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (() => { | |
| const $wrapper = $(".row.col-12.d-flex"); | |
| const $sbcs = $wrapper.find(".mb-5") | |
| const approval = $e => $e.find(".btn-sbc-vote-like").text().trim().replaceAll("(", '').replaceAll("%)", ""); | |
| [].sort.call($sbcs, (a, b) => approval($(b)) - approval($(a))); | |
| $sbcs.each(function() { $wrapper.append(this) }) | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment