Skip to content

Instantly share code, notes, and snippets.

@sandervd
Created April 14, 2016 07:01
Show Gist options
  • Save sandervd/33fe2b4c81329f65b59a1fce9a972eef to your computer and use it in GitHub Desktop.
Save sandervd/33fe2b4c81329f65b59a1fce9a972eef to your computer and use it in GitHub Desktop.
bookmarklet GitHub Jira
// Go to Github
javascript:(function(){
var href=String(window.location.href);
var ticketId=href.substr(href.lastIndexOf('/') + 1);
var githubPath='https://github.com/ec-europa/joinup-dev/tree/' + ticketId;
window.open(githubPath)
})();
// Go to Jira
javascript:(function(){
var href=String(window.location.href);
var ticketId=href.substr(href.lastIndexOf('/') + 1);
var jiraPath='https://webgate.ec.europa.eu/CITnet/jira/browse/' + ticketId;
window.open(jiraPath)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment