Skip to content

Instantly share code, notes, and snippets.

@dhilowitz
Created March 1, 2013 00:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhilowitz/5061253 to your computer and use it in GitHub Desktop.
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.
var taskString = ''; var tasks = $('.taskList .task .title .link-title').text(function(index, value) {
taskString = taskString + '- ' + value + "\n";
}); console.log(taskString); copy(taskString);
@dhilowitz
Copy link
Author

Depending on the view, it would actually be quite possible to grab the name of the project and priority as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment