Last active
September 23, 2017 18:45
-
-
Save abhivaikar/749f2e5970a7dfc527d7b765dc51912d to your computer and use it in GitHub Desktop.
bookmarklet code for JIRA issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { var jiraBaseURL = "https://yourjiradomain.com/jira/browse/"; var issueId = prompt("Enter your JIRA issue ID"); if(issueId) {window.open(jiraBaseURL+issueId); } else return })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment