Our company has recently installed JIRA 4.1#519 and I am having trouble navigating the issues using popups. Is there a way to open an issue from the dashboard not in a popup dialog, but on the same page in the browser? The thing is, I have a not that big of a monitor (2-nd monitor for the browser), and popup is limiting the view to a small portion on the screen, I want to see it fullscreen.
Oh, didn't realise you were talking about greenhopper.
Here is the html of the sprint view element:
[code]
<a title="View this issue in JIRA - ACP-789" onclick="return Boards.viewIssue('ACP-789', event);" href="/browse/ACP-789">
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure I totally understand... you can prevent popups for the resolve dialog by putting the following in the announcement banner. You should be able to do it through disabling a plugin component, but I can't find which one right now.
<script type="text/javascript"> (function($){ $(document).ready(function(){ AJS.$("a.issueaction-workflow-transition").removeClass("issueaction-workflow-transition"); }); })(AJS.$); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.