Last active
September 11, 2019 14:40
-
-
Save midlan/bf08185ba06bb01b4646e8a7817a7207 to your computer and use it in GitHub Desktop.
Bookmarklet to jump on JIRA issue in new tab. Make sure, you put your's JIRA workspace name.
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() { | |
new Promise(setIssue => { | |
var issueCode = prompt('Issue code:').trim(); | |
if (issueCode) { setIssue(issueCode); } | |
}).then(issueCode => { | |
window.open('https://<YOUR JIRA WORKSPACE>.atlassian.net/browse/' + issueCode); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment