Last active
May 4, 2018 19:23
-
-
Save gerardosandoval/1a197b78585235267a72b3c6371145e6 to your computer and use it in GitHub Desktop.
Toggle Github Comments Bookmarklet
This file contains 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
// Help you see referenced PR's And issues faster by hidding comments | |
javascript:(document.querySelectorAll(".edit-comment-hide").forEach(function(el){if (el.style.display === "none") {el.style.display = "block";} else {el.style.display = "none";}})) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment