Skip to content

Instantly share code, notes, and snippets.

@onozaty
Last active August 29, 2015 14:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onozaty/1137e4edc0a55078fd1f to your computer and use it in GitHub Desktop.
Save onozaty/1137e4edc0a55078fd1f to your computer and use it in GitHub Desktop.
// Path pattern: /issues
// Type : JavaScript
$(function() {
$('table.list.issues a.parent').each(function() {
if (!this.nextSibling) return;
this.title = this.nextSibling.textContent.substr(2);
this.nextSibling.parentNode.removeChild(this.nextSibling);
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment