Last active
January 27, 2022 08:18
-
-
Save midlan/907f06000b95156725e1449dccb31f98 to your computer and use it in GitHub Desktop.
Bookmarklet to jump on JIRA issue in current tab. Make sure, you put your's JIRA workspace name.
This file contains 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 issueCode = prompt('Issue code:'); | |
if (issueCode) { | |
var url = 'https://<YOUR JIRA WORKSPACE>.atlassian.net/browse/' + issueCode.trim(); | |
window.location.href = url; /*redirect*/ | |
console.log('JIRA opened URL:', url); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment