Skip to content

Instantly share code, notes, and snippets.

@stefanjudis
Created May 15, 2015 13:40
Show Gist options
  • Save stefanjudis/e222fc0fe09aa662861d to your computer and use it in GitHub Desktop.
Save stefanjudis/e222fc0fe09aa662861d to your computer and use it in GitHub Desktop.
var commentBox = document.querySelector( '[name="comment[body]"]' );
commentBox.value = '## QA Description\n\n' +
'## Legend: \n' +
' - :white_check_mark: QA Passed\n' +
' - :red_circle: QA fail\n' +
' - :question: QA needs more info\n' +
' - :green_heart: Dev fixed it after QA fail \n\n' +
'## Checklist: \n\n' +
' - Feature A\n' +
' - Please test this and that\n' +
' - Feature B\n' +
' - Please test this and that\n' +
' - Feature C\n' +
' - Feature D\n' +
' - Feature E\n' +
' - Feature F\n';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment