Skip to content

Instantly share code, notes, and snippets.

@gseitz
Forked from harshithjvmi/github-code-view-expander.js
Last active December 22, 2015 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gseitz/6506403 to your computer and use it in GitHub Desktop.
Save gseitz/6506403 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @author Gerolf Seitz
// @name Github Wide Diff.
// @description Make the diff view as wide as the browser window.
// @include https://github.com/*
// ==/UserScript==
(function () {
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
// the guts of this userscript
function main() {
$("#js-repo-pjax-container, .frames > .frame-center").width($(document.body).width()-50);
}
// load jQuery and execute the main function
addJQuery(main);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment