Created
June 19, 2015 12:52
-
-
Save insin/9642ff066bb7b4fea347 to your computer and use it in GitHub Desktop.
Hide Github comments from people who aren't owners/collaborators
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
[].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