Skip to content

Instantly share code, notes, and snippets.

@masatomo
Last active December 31, 2015 05:39
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 masatomo/7942405 to your computer and use it in GitHub Desktop.
Save masatomo/7942405 to your computer and use it in GitHub Desktop.
a bookmarklet to open an issue based on the current issue.
javascript: (function() { var urls = window.location.href.split("/") ; open('https://github.com/' + urls[3] + '/' + urls[4] + '/issues/new?body=' + encodeURIComponent("See #" + urls.pop())) })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment