Skip to content

Instantly share code, notes, and snippets.

@3mkay
Last active December 29, 2015 08:39
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
JavaScript Bookmarklet to add-up all the estimated checklist items on a card in Trello.
var $lists=$(".checklist");
$.each($lists, function( key, value ) {
var $lName = $(value).find(".checklist-title h3");
var $lNameInput = $(value).find(".checklist-title input");
var $items = $(value).find(".checklist-item");
var $tot = 0;
$.each($items, function(key, value) {
var $itemText = $(value).find(".checklist-item-details-text");
var $itemEst = $itemText[0].innerText.match(/\(\d+\.?\d*\)/g);
if ($itemEst) {
$itemEst = new Number($itemEst[0].replace("(", '').replace(")", ''));
if (!isNaN($itemEst)) {
$tot += $itemEst;
}
}
});
$lNameUp = $lName[0].innerText.match(/^[^\(]*/i);
$lNameUp += ' (' + $tot + ')';
$lName[0].innerText = $lNameUp;
$lNameInput.val($lNameUp);
});
@ThePlenkov
Copy link

well done! Could you please advise how to aggregate now checklists to card name?

Then Scrum for Trello plugin will be compatible

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment