Skip to content

Instantly share code, notes, and snippets.

@danriti
Last active April 30, 2018 20:50
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danriti/6924269 to your computer and use it in GitHub Desktop.
Save danriti/6924269 to your computer and use it in GitHub Desktop.
Display all hidden inline comments on a Github issue/pull request. Just copy+pasta into your JS console or make a bookmarklet.
$('.outdated-diff-comment-container').addClass('open');
@nelsonic
Copy link

@danriti a variation on this without relying on JQuery is:

document.querySelectorAll(".show-outdated-button").forEach(function(i){i.click()});

@leventov
Copy link

A supported solution: refined-github/refined-github#821

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