Last active
October 2, 2018 09:33
-
-
Save yoksel/f1558dde7bf5b0032bef63c1a92cc035 to your computer and use it in GitHub Desktop.
Bookmarklet. Show outdated diffs in GitHub pull requests
This file contains hidden or 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
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