Created
May 15, 2015 13:40
-
-
Save stefanjudis/e222fc0fe09aa662861d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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