Skip to content

Instantly share code, notes, and snippets.

@insin
Created June 19, 2015 12:52
Show Gist options
  • Save insin/9642ff066bb7b4fea347 to your computer and use it in GitHub Desktop.
Save insin/9642ff066bb7b4fea347 to your computer and use it in GitHub Desktop.
Hide Github comments from people who aren't owners/collaborators
[].forEach.call(document.querySelectorAll('.timeline-comment-wrapper'), comment => {
if (!comment.querySelector('.timeline-comment-label')) {
comment.style.display = 'none'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment