Skip to content

Instantly share code, notes, and snippets.

@authenticsebastian
Created May 16, 2018 15:26
Show Gist options
  • Save authenticsebastian/21cdc62501d5e442a93020418a901bd0 to your computer and use it in GitHub Desktop.
Save authenticsebastian/21cdc62501d5e442a93020418a901bd0 to your computer and use it in GitHub Desktop.
Click on unfolded files in Github
[].slice.call(document.querySelectorAll('.js-file-header'))
.filter((item) => item.dataset.path.indexOf('{file-name-part}') > -1 && !item.parentNode.classList.contains('Details--on'))
.map((header) => header.querySelector('.js-details-target'))
.forEach((item) => item.click())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment