Created
October 29, 2018 12:46
-
-
Save mykola-radionov/4935d051c3939484ed83ec086edb82c2 to your computer and use it in GitHub Desktop.
Since Github wiped out jQuery I needed to rewrite bookmarklet to expand all outdated PR comments. How to use: just add it to the bookmarks tab as a separate bookmark with this code as its URL.
This file contains 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:(function() { | |
document.querySelectorAll(".outdated-comment").forEach( | |
function (node) { | |
node.querySelector(".show-outdated-button").click(); | |
} | |
) | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment