Skip to content

Instantly share code, notes, and snippets.

@fabioelia
Created December 12, 2017 20:42
Show Gist options
  • Select an option

  • Save fabioelia/00145703fd3991bad5e9bfe638bea6f1 to your computer and use it in GitHub Desktop.

Select an option

Save fabioelia/00145703fd3991bad5e9bfe638bea6f1 to your computer and use it in GitHub Desktop.
Jira hide completed entries
(() => {
if ($('#toggle-done').length === 0) {
$('#create-menu').after('<li id="toggle-done"><a class="aui-button aui-button-secondary aui-style" style="background-color: #6fb035; border-color: #3e730e">Show / Hide Done</a></li>');
$('#toggle-done').on('click', function(e) {
e.preventDefault();
$('.ghx-done').toggleClass('hidden');
return false;
});
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment