Last active
November 6, 2015 16:25
-
-
Save convenient/b8e99c221caf9e599ac8 to your computer and use it in GitHub Desktop.
Git PR Task List
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
javascript:(function() {var clickEvt = new MouseEvent("click", {bubbles: true, clientX: 20}); var editButtons = document.getElementsByClassName('js-comment-edit-button'); editButtons[0].dispatchEvent(clickEvt); var commentForms = document.getElementsByClassName('comment-form-textarea'); commentForms[0].value+="\n\n* [ ] Task 1\n* [ ] Task 2\n* [ ] Task 3\n* [ ] Task 4\n* [ ] Tasl 5\n"; var updateButtons = document.getElementsByClassName('btn-primary'); updateButtons[0].click();})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment