diff --git a/src/webaudio.js b/src/webaudio.js index bbdc3afe..c5b2df7d 100644 --- a/src/webaudio.js +++ b/src/webaudio.js @@ -107,7 +107,7 @@ WebAudioOut.prototype.unlock = function(callback) { var source = this.context.createBufferSource(); source.buffer = buffer; source.connect(this.destination); - source.start(0); + source.noteOn(0); setTimeout(this.checkIfUnlocked.bind(this, source, 0), 0); };