Refresh issue on change

Mesgina Wolday April 18, 2013

Hi,

I have entered the following code in the "Announcement Banner".

<script type="text/javascript">
AJS.$(document).ready(function () {
var issueKey = AJS.$("#key-val");
if (issueKey) {
var myProject= issueKey.text().split("-")[0];
// console.log("alt:"+AJS.$("#key-val .toggle-title").text())
if(myProject == "TPROJ"){
AJS.$("#create-subtask").text("Create Action Plan");
AJS.$("#view-subtasks_heading .toggle-title").text("Action Plan");

}
}
});
</script>

My intention with code is the following:

1. Change the Sub-Task header to "Action Plan" and

2. Change the "Create Sub-Task"-Action to "Creat Action Plan"

only for one specific project.

This works fine.

My problem is i need to refresh my issue manuelly, any time i create a sub-task, because the header is changed to "Sub-Task" and the action "Create Sub-Task" is also change to its previous name.

I am looking for a ways, to do the refresh the issue after any changes are entered in the issue.

Can any-way help. Thanx in advance.

1 answer

1 accepted

0 votes
Answer accepted
Nikola ILO
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 18, 2013
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {    
// your code here
});

If you put your code in there it will always be executed as soon as jira loads new content.

Mesgina Wolday October 29, 2014

Thanx Nikola. I works fine.

Suggest an answer

Log in or Sign up to answer