Created
March 1, 2013 00:01
-
-
Save dhilowitz/5061253 to your computer and use it in GitHub Desktop.
1) In Chrome: open up a list view in the doit.im website.
2) Open up the Developer Console. 3) Paste this snippet into the console and hit enter. 4) Go into your favorite text editor and paste.
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
var taskString = ''; var tasks = $('.taskList .task .title .link-title').text(function(index, value) { | |
taskString = taskString + '- ' + value + "\n"; | |
}); console.log(taskString); copy(taskString); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Depending on the view, it would actually be quite possible to grab the name of the project and priority as well.