Created
September 10, 2015 09:05
-
-
Save halhenke/870c0601123df9c21a12 to your computer and use it in GitHub Desktop.
From http://nerds.airbnb.com/github-pull-request-bookmarklet/ AirBNB Bookmarklet to hide comments in Pull Request
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
javascript:(function() { var username=prompt("Hide comment blocks including user:"); if (username!=null && username!="") { $(".comment-header-author:contains("+username+")").parents("tr.inline-comments").hide(); } })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment