Skip to content

Instantly share code, notes, and snippets.

@ascott1
Created December 11, 2013 14:15
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 ascott1/7911113 to your computer and use it in GitHub Desktop.
Save ascott1/7911113 to your computer and use it in GitHub Desktop.
Bug Report Template Bookmarklet
javascript:(function() {
var e = document.getElementById('issue_body');
if (e) {
e.value += '# URL\n\n\n' +
'# Actual Behavior\n\n\n' +
'# Expected Behavior\n\n\n' +
'# Steps to Reproduce\n\n\n' +
'# Screenshot';
}
})();
@himedlooff
Copy link

You can also create a custom tab on your repo that links to https://github.com/your_name/your_repo/issues/new?body=%23%20URL%0D%0D%0D%23%20Actual%20Behavior%0D%0D%0D%23%20Expected%20Behavior%0D%0D%0D%23%20Steps%20to%20Reproduce%0D%0D%0D%23%20Screenshot&labels=bug.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment