Created
October 14, 2017 08:02
-
-
Save pratheekhegde/f3f2c8c18ba9b04b521b2a74d840cb00 to your computer and use it in GitHub Desktop.
Hide or show Comments in Github
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
| // hide comments | |
| var comments = $$(".pl-c"); | |
| for (c in comments) { | |
| comments[c].parentNode.parentNode.style.display='none'; | |
| } | |
| // show comments | |
| var comments = $$(".pl-c"); | |
| for (c in comments) { | |
| comments[c].parentNode.parentNode.style.display=''; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment