Skip to content

Instantly share code, notes, and snippets.

@halhenke
Created September 10, 2015 09:05
Show Gist options
  • Save halhenke/870c0601123df9c21a12 to your computer and use it in GitHub Desktop.
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
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