Hi community,
We need to hide the assign to me hyper link for specific issue type. We have successfully hidden the assign button using script fragments (by script runner) but the method doesn't work for the assign to me hyper link.
Any suggestion would be appreciated...
Cheers,
Marina
It should be easy enough to do that with script fragment>install a web resource.
What context did you try to install the script?
Perhaps you didn't catch the ajaxComple event?
Try this for your script:
(function ($) {
$(function () {
$("#assign-to-me").hide();
});
$(document).ajaxComplete(function () {
$("#assign-to-me-trigger").hide();
});
})(AJS.$);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.