Skip to content

Instantly share code, notes, and snippets.

@AliSoftware
Last active February 13, 2017 11:40
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save AliSoftware/e272a2d6470eaadf905a6be73414906f to your computer and use it in GitHub Desktop.
Save AliSoftware/e272a2d6470eaadf905a6be73414906f to your computer and use it in GitHub Desktop.
Hide Pods/* related files in a GitHub diff page
// When you are in the diff page of a GitHub PR
// And want to hide all the Pods/* files in that diff page, use this:
// Paste that in your Web Inspector's console
var nodes = document.evaluate("//div[@class='file-header' and starts-with(@data-path,'Pods/')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null );
for(i=0; i<nodes.snapshotLength; ++i) {
nodes.snapshotItem(i).parentNode.hidden = true
}
// Or even better, create a bookmark with this code for easy quick access:
javascript:var nodes = document.evaluate("//div[@class='file-header' and starts-with(@data-path,'Pods/')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for(i=0; i<nodes.snapshotLength; ++i) { nodes.snapshotItem(i).parentNode.hidden = true }
@3lvis
Copy link

3lvis commented Jan 25, 2017

Thanks <3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment