Skip to content

Instantly share code, notes, and snippets.

@jazeee
Last active November 5, 2023 16:11
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 jazeee/475da2777bb4af4643b132c04958a4f8 to your computer and use it in GitHub Desktop.
Save jazeee/475da2777bb4af4643b132c04958a4f8 to your computer and use it in GitHub Desktop.
Go through each step in a Github code review
getFirstSelect = () => $('input[type="checkbox"].js-reviewed-checkbox:not([checked])');
let firstMatchingElement = getFirstSelect(); firstMatchingElement.scrollIntoView();setTimeout(() => firstMatchingElement.click(), /*Time to Read the code*/10);
@jazeee
Copy link
Author

jazeee commented Aug 10, 2022

In Chrome debugger for github, can use something like this to go through each file in a PR:
image

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