Skip to content

Instantly share code, notes, and snippets.

@crushndent
Forked from niallsmart/copy-checklist.js
Created July 22, 2019 19:32
Show Gist options
  • Save crushndent/644ae0f5fbab1ce8a757417dd9462c4e to your computer and use it in GitHub Desktop.
Save crushndent/644ae0f5fbab1ce8a757417dd9462c4e to your computer and use it in GitHub Desktop.
Copy Trello checklist to clipboard
copy($(".checklist-item:not(.checklist-item-checked)").map(function() {
var e = $(this),
item = e.find(".checklist-item-details-text").text()
if (e.hasClass("checklist-item-state-complete")) {
item = item + " (DONE)"
}
return item
}).get().join("\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment