Hello,
i have developed a basic plugin for jira.
however when i load script in to the script file it is not working.
i need to change values of custom field even on pop up using javascript.
my js
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
alert(“Hello!!!”);
alert(document.getElementById(“customfield_10000”))
document.getElementById(“customfield_10000”).value = “working”;
});
my webresource.
com.atlassian.auiplugin:ajs atl.admin atl.general atl.popup <context>myPlugin</context>
</web-resource>