-
-
Save chrisclark/aa4a46fe310dfbcfcc14 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name GitHub Suppress Diffs | |
// @version 2013.10.29 | |
// @namespace FET | |
// @description Suppress style.css | |
// @include http*://github.com/* | |
// ==/UserScript== | |
// Files to suppress: | |
suppressFiles([ | |
"themes/eP/static/css/ui/stylesheets/app.css", | |
"themes/eP/static/css/ui/stylesheets/base/base.css", | |
"themes/eP/static/css/ui/stylesheets/static-pages/authentication.css", | |
"themes/eP/static/css/ui/stylesheets/static-pages/error-pages.css", | |
"themes/eP/static/css/ui/stylesheets/static-pages/seo-pages.css" | |
]); | |
// Call resize on the specified files: | |
function suppressFiles(path){ | |
for (var url in path) { | |
resizeDiff(document.querySelector('.meta[data-path="' + path[url] + '"]').nextElementSibling); | |
} | |
} | |
// Resize the diff area in github: | |
function resizeDiff(obj) { | |
obj.style.height = "200px"; | |
obj.style.overflow = "auto"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment