Trello bookmarklet to (re-)calculate sums of "points" from cards.
"Points" can be anything numeric (no units). Just prefix each card you want to count with the points in parentheses. E.g. (3) Investigate options
.
It's okay for cards to not have points. They just won't be included in the sums.
The sum of points for each list will get added to the list title in the same way as cards. E.g. (17) To Do
. Any existing sum will get updated.
The list's actual title (e.g. if you refresh) will not be updated; only the "display" title at that moment will be.
Example: I'm planning my wedding's seating arrangement, so I have a list for each table and a card for each party. I prefix each card with the size of the party, and hit this bookmarklet to calculate each table's total.
To add this bookmarklet to your browser, instructions for Chrome:
- Right-click your Bookmarks Bar.
- Click "Add Page..."
- For "Name", type something like
Trello sum
. - For "URL", copy-paste the below:
javascript:!function(){var t=/^[(](\d+)[)].*/;$("#board .list").each(function(){var a=$(this),e=0;a.find(".list-card").each(function(){var a=$(this),i=a.find(".list-card-title").text(),r=a.find(".list-card-title .card-short-id").text();0===i.indexOf(r)&&(i=i.replace(r,""));var d=i.match(t);if(d){var n=parseInt(d[1],10);e+=n}});var i=a.find("h2.list-header-name-assist"),r=a.find("textarea.list-header-name"),d=i.text(),n=d.match(t);if(n){var c="("+n[1]+") ";d=d.replace(c,"")}d="("+e+") "+d,i.text(d),r.text(d)})}();
NOTE: This bookmarklet may break at any time, e.g. if Trello changes their code (on which this bookmarklet relies).
No updates or fixes guaranteed, but check back on this gist if anything breaks, and feel free to tweet me at @aseemk.
Enjoy!