Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created January 14, 2019 01:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/e9463e566188019f0e4658c42e60a286 to your computer and use it in GitHub Desktop.
Save iaindooley/e9463e566188019f0e4658c42e60a286 to your computer and use it in GitHub Desktop.
Add missing checklist
function addChecklist()
{
var board = new Trellinator().board("My Board");
var template = board.card("Checklist Origin");
board.cards().each(function(card)
{
template.copyChecklist("Forgotten Checklist",card);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment