rserota / wad

Web Audio DAW. Use the Web Audio API for dynamic sound synthesis. It's like jQuery for your ears.
MIT License
1.9k stars 160 forks source link

wad does not work in ios 9 #49

Closed devism closed 5 years ago

devism commented 9 years ago

The following code does not work in ios 9. touchend, mousedown, etc also fail.

document.getElementById('loop1').addEventListener("click", playSample);

function playSample(){
    var bell = new Wad({source : '/webaudio/audio/hot_pants.wav'});
bell.play();

   setTimeout(function(){
     bell.stop();
    },2000);
}