Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created July 7, 2016 07:33
Show Gist options
  • Save andreasvirkus/645aeeb73e44b4059e8716b206fc820c to your computer and use it in GitHub Desktop.
Save andreasvirkus/645aeeb73e44b4059e8716b206fc820c to your computer and use it in GitHub Desktop.
/**
* A simple user script to customise the layout
* of JIRA's Backlog (add some keyboard shortcuts + hide
* unnecessary stuff)
*
* // TODO:
* - Set shortcut for moving back to parent ticket + creating sub task
* (useful when the focus jumps to the newly created subtask)
* - Set shortcut for assigning story points
*/
$(function() {
if ($('body#jira')) {
$('.ghx-extra-fields').remove();
$('.aui-header').hide();
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment