Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save iaindooley/6b414089d8d421eabdd7b59762e03bf7 to your computer and use it in GitHub Desktop.
Save iaindooley/6b414089d8d421eabdd7b59762e03bf7 to your computer and use it in GitHub Desktop.
Add new items
function addNewChecklistItems()
{
new Trellinator().board("My Board").cards().each(function(card)
{
card.addChecklist("Target Checklist Name",function(list)
{
list.addItem("New Item One");
list.addItem("New Item Two");
list.addItem("New Item Three");
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment