Javascript in Announcement Banner will not run from internal links

Peter December 7, 2015

I am attempting to hiding two panels from the Kanoah add-on on all issues except "Story" and "Epic".  The two panels are NOT being removed whenever I open an issue from a link inside JIRA.

The panels are being removed when:

  • Using a URL (i.e. //<hostname>/browse/ISS-123)
  • Opening an issue from a link inside JIRA and then refreshing the screen (F5)

 

I know the JS is firing every time since the "announcement-banner" remains hidden. 

 

Any guidance on a solution for consistent behavior?

&lt;script type='text/javascript'&gt;
AJS.toInit(function() {
    AJS.$("#announcement-banner").hide();
    var issueType = AJS.$.trim(AJS.$("#type-val").text());
 
    if(!(issueType == 'Story' || issueType == 'Epic'))
    {
       var panelTestKanoah = AJS.$("#test-manager-issuepanel");
       panelTestKanoah.remove();
       var panelTestRunKanoah = AJS.$("#test-manager-issue-test-run-panel");
       panelTestRunKanoah.remove();
    }
});
&lt;/script&gt;

2 answers

0 votes
pelizza
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.
March 23, 2016

Hey Peter,

Found you here smile

This feature has been launched on the latest version (v2.3.0) of Kanoah Tests. You can configure which issue types should display the panels or not. Check out the release notes.

screenshot_v.2.3.0_1_small.png

Hope that helps!

0 votes
Peter February 1, 2016

Any suggestion on how to have the function fire consistently?

Suggest an answer

Log in or Sign up to answer