Skip to content

Instantly share code, notes, and snippets.

@pavle-goloskokovic
Last active January 20, 2018 12:56
Show Gist options
  • Save pavle-goloskokovic/48aa7c17ff42e1a424dce9493faa379b to your computer and use it in GitHub Desktop.
Save pavle-goloskokovic/48aa7c17ff42e1a424dce9493faa379b to your computer and use it in GitHub Desktop.
With some iOS versions trying to unlock Web Audio on 'touchstart' event doesn’t work
if (context.state === 'suspended' && 'ontouchstart' in window)
{
var unlock = function()
{
context.resume();
};
document.body.addEventListener('touchstart', unlock, false);
document.body.addEventListener('touchend', unlock, false);
}
@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