Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuikoaleksandr/9daec1fcf030cf3f61e48f329a09c270 to your computer and use it in GitHub Desktop.
Save chuikoaleksandr/9daec1fcf030cf3f61e48f329a09c270 to your computer and use it in GitHub Desktop.
Atlasteam, Jira, plugin JsIncluder. Hide issue type on create. For https://atlasteam.ru/?p=1925
function hideIssueType(issueTypeName) {
var elem = "<style type=\"text/css\">#issuetype-suggestions .aui-list-item-li-" + issueTypeName + " {display: none}</style>";
AJS.$("head").append(elem);
}
hideIssueType('application')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment