Created
August 23, 2017 18:59
-
-
Save adambankin/316855bb4d8f138fb29e1bb387c79fca to your computer and use it in GitHub Desktop.
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
var event = new MouseEvent('click', { | |
view: window, | |
bubbles: true, | |
cancelable: true | |
}); | |
var buttons = document.querySelectorAll('.btn-link.show-outdated-button') || []; | |
buttons.forEach(button => button.dispatchEvent(event)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment