Last active
October 2, 2015 16:16
-
-
Save jennschiffer/ba6db0cbc0fd10c897ae to your computer and use it in GitHub Desktop.
put this in your damn console to hide annoying files in your github pr diff
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
// replace "wp-content/plugins" in the annoyance variable unless that is your annoyance like it is mine | |
$('.user-select-contain').each(function(){var annoyance="wp-content/plugins";var title=$(this).attr('title');if(title&&title.indexOf(annoyance)!=-1){$(this).closest('.file').hide();}}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment