Skip to content

Instantly share code, notes, and snippets.

@mthadley
Created January 28, 2025 21:21
Show Gist options
  • Save mthadley/ca9cfa673dd0a471a64e00cc8b85d9c8 to your computer and use it in GitHub Desktop.
Save mthadley/ca9cfa673dd0a471a64e00cc8b85d9c8 to your computer and use it in GitHub Desktop.
GitHub OAuth button disablement
// 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