Skip to content

Instantly share code, notes, and snippets.

@bbody
Created June 9, 2022 06:03
Show Gist options
  • Save bbody/d4637b980beb9a1435a31c6ab031ffbb to your computer and use it in GitHub Desktop.
Save bbody/d4637b980beb9a1435a31c6ab031ffbb to your computer and use it in GitHub Desktop.
(
() => {
const jiraReference = window.prompt("JIRA Reference","");
if (!jiraReference) {
window.open('INSERT_JIRA_HOMEPAGE_HERE', "_blank");
} else {
window.open(`INSERT_JIRA_ROOT_HERE/browse/${jiraReference}`).focus();}
}
)()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment