Skip to content

Instantly share code, notes, and snippets.

@dave1010
Created November 16, 2010 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dave1010/701616 to your computer and use it in GitHub Desktop.
Save dave1010/701616 to your computer and use it in GitHub Desktop.
Get a quick list of all issues on the current page with their #
// add as a bookmark with "javascript:" at the beginning of the URL to make into a bookmarklet
(function(){var o = '';$('.issue').each(function() {var n = '#' + $('.number', this).text().replace('.', '') + ' - ',t = $('.issue_title', this).text();o += n+t + '\n';});alert(o);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment