Skip to content

Instantly share code, notes, and snippets.

@mykola-radionov
Created October 29, 2018 12:46
Show Gist options
  • Save mykola-radionov/4935d051c3939484ed83ec086edb82c2 to your computer and use it in GitHub Desktop.
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.
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