Skip to content

Instantly share code, notes, and snippets.

@pratheekhegde
Created October 14, 2017 08:02
Show Gist options
  • Select an option

  • Save pratheekhegde/f3f2c8c18ba9b04b521b2a74d840cb00 to your computer and use it in GitHub Desktop.

Select an option

Save pratheekhegde/f3f2c8c18ba9b04b521b2a74d840cb00 to your computer and use it in GitHub Desktop.
Hide or show Comments in Github
// 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