-
-
Save crushndent/644ae0f5fbab1ce8a757417dd9462c4e to your computer and use it in GitHub Desktop.
Copy Trello checklist to clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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