Skip to content

Instantly share code, notes, and snippets.

@detj
Created October 1, 2013 20:20
Show Gist options
  • Save detj/6784473 to your computer and use it in GitHub Desktop.
Save detj/6784473 to your computer and use it in GitHub Desktop.
Run this snippet in your console on a github issues to get a list in this format #<issue-no> - <issue-title>
(function() {
var text = [];
$('.list-group .list-group-item').each(function(index, listGroupItem) {
text.push($(listGroupItem).find('.list-group-item-number').text() + ' - ' + $(listGroupItem).find('.list-group-item-name .js-navigation-open').text());
});
console.log(text.join("\n"));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment