Skip to content

Instantly share code, notes, and snippets.

@tricknotes
Created October 31, 2012 14:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tricknotes/3987465 to your computer and use it in GitHub Desktop.
Save tricknotes/3987465 to your computer and use it in GitHub Desktop.
Gist を印刷する時に良い感じのレイアウトにする
// For printout https://gist.github.com
// DOM
$('#header').remove();
$('#repos').remove();
$('.secondary').remove();
$('.meta').remove();
$('#footer').remove();
$('.push').remove();
$('#comments').remove();
$('#delete_link').remove();
// Style
$('link[media=screen]').attr('media', 'all');
$('.main').css('width', '100%');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment