Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/eeda35b82886c6be49a1ded7f92989af to your computer and use it in GitHub Desktop.
Save iaindooley/eeda35b82886c6be49a1ded7f92989af to your computer and use it in GitHub Desktop.
Uncheck all checklists on a copied card
function uncheckAllChecklistsOnACopiedCard(notification)
{
new Notification(notification).copiedCard().checklists().each(function(cl)
{
cl.reset();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment