Skip to content

Instantly share code, notes, and snippets.

@midlan
Last active September 11, 2019 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save midlan/bf08185ba06bb01b4646e8a7817a7207 to your computer and use it in GitHub Desktop.
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.
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