I put script in Announcement Banner
It works
But how to hide information about transition in All tab?
jQuery(document).ready(function($) {
JIRA.ViewIssueTabs.onTabReady(function() {
callHideFunction();
});
callHideFunction();
function callHideFunction(){
var project=getProjectName();
if(project=='my_project'){
AJS.$('#transitions-summary-tabpanel').hide();
}else{
AJS.$('#transitions-summary-tabpanel').show();
}
function getProjectName() {
var projectName = AJS.$("#project-name-val").text();
return projectName;
}
}});
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.