Skip to content

Instantly share code, notes, and snippets.

@dziudek
Created April 5, 2016 08:10
Show Gist options
  • Save dziudek/05340a5afa3a94ef2291279573652549 to your computer and use it in GitHub Desktop.
Save dziudek/05340a5afa3a94ef2291279573652549 to your computer and use it in GitHub Desktop.
Get Bitbucket issues list without any unnecessary content
$('.iterable-item').each(function(i, row) {
row = $(row);
row.find('td').each(function(j, cell) {
cell = $(cell);
if(j > 0) {
cell.css('display', 'none');
}
});
});
$('.issue-list--meta').css('display', 'none');
$('thead').css('display', 'none');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment