Skip to content

Instantly share code, notes, and snippets.

@pavle-goloskokovic
Created January 20, 2018 12:23
Show Gist options
  • Save pavle-goloskokovic/e6ecad7364e21f584cae92c67f00e495 to your computer and use it in GitHub Desktop.
Save pavle-goloskokovic/e6ecad7364e21f584cae92c67f00e495 to your computer and use it in GitHub Desktop.
Check if touch events are available as well
if (context.state === 'suspended' && 'ontouchstart' in window)
{
// Unlock it
}
@pavle-goloskokovic
Copy link
Author

I’ve created an npm package called web-audio-touch-unlock
that exposes this method and makes it easy to use in your own projects.
Just pass your AudioContext instance to it and you’re good to go!

You can try it out yourself here.

Cheers!

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