Created
January 28, 2025 21:21
-
-
Save mthadley/ca9cfa673dd0a471a64e00cc8b85d9c8 to your computer and use it in GitHub Desktop.
GitHub OAuth button disablement
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
// By default the oauth button remains disabled until the visitor focusses the | |
// window. This event handler enables the button once the window has been focussed. | |
async function updateButtonOnPageFocused(button: Element) { | |
await pageFocused(document) | |
await new Promise(resolve => setTimeout(resolve, 1000)) | |
if (button instanceof HTMLButtonElement) button.disabled = false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment