Skip to content

Instantly share code, notes, and snippets.

@pavle-goloskokovic
Created January 20, 2018 12:24
Show Gist options
  • Save pavle-goloskokovic/7ab2da6f05dc26d1a8da6fe4b6e855f5 to your computer and use it in GitHub Desktop.
Save pavle-goloskokovic/7ab2da6f05dc26d1a8da6fe4b6e855f5 to your computer and use it in GitHub Desktop.
If the audio context is suspended we can call its resume() method to set it into running state
if (context.state === 'suspended' && 'ontouchstart' in window)
{
context.resume();
}
@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