-
-
Save Max-Makhrov/bc8fb5ac7402882e4f6a18d96959c450 to your computer and use it in GitHub Desktop.
Copy Trello checklist to console
This file contains 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
$(".checklist-item").map(function(i, item) { | |
let text = $(item).find(".checklist-item-details-text").text(); | |
if( $(item).hasClass("checklist-item-state-complete") ) { | |
text += " (DONE)"; | |
} | |
return text; | |
}).get().join('\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Chrome,
The checklist items will be in the console.