Created
July 7, 2016 07:33
-
-
Save andreasvirkus/645aeeb73e44b4059e8716b206fc820c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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