Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antydemant/f38951cb290a55d4df12e6a62c7f9e3c to your computer and use it in GitHub Desktop.
Save antydemant/f38951cb290a55d4df12e6a62c7f9e3c to your computer and use it in GitHub Desktop.
Highlight assigned JIRA ticket in the epic
$(document).ready(function(){
// Issues in Epic check Assignee each epic
if($(".issuerow").length > 0) {
$(".issuerow").each(function(i) {
var assigneeInEpic = $(this).find("td.nav.assignee").find("a").text();
var firstLastName = "Ihor Ostapchuk"; //Your First Name and Last Name in JIRA
if(assigneeInEpic == firstLastName) {
$(this).css("background-color","#adffd2");
}
});
}
// to be continued...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment