Skip to content

Instantly share code, notes, and snippets.

@yoksel
Last active October 2, 2018 09:33
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 yoksel/f1558dde7bf5b0032bef63c1a92cc035 to your computer and use it in GitHub Desktop.
Save yoksel/f1558dde7bf5b0032bef63c1a92cc035 to your computer and use it in GitHub Desktop.
Bookmarklet. Show outdated diffs in GitHub pull requests
javascript:{ let closedComments = document.querySelectorAll(".outdated-comment:not(.open) .js-toggle-outdated-comments"); closedComments.map = [].map; closedComments.map(item => { if(item.textContent.indexOf('resolved') < 0) { item.click(); }})}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment