You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks for the work on this library, it's 💯
We got an issue with setSpeed where if we set it before the play() it will not work in Safari and IE11, if we edit dist/buzz.js and use defaultPlaybackRate instead of playbackRate it does though.
// We've changed:buzzSound.setSpeed(playbackRate);// to:buzzSound.sound.playbackRate=playbackRate;// makes it work in Chrome & FirefoxbuzzSound.sound.defaultPlaybackRate=playbackRate;// makes it work in Safari and IE11
Anyone else run into this issue?
The text was updated successfully, but these errors were encountered:
First of all thanks for the work on this library, it's 💯
We got an issue with
setSpeed
where if we set it before theplay()
it will not work in Safari and IE11, if we editdist/buzz.js
and usedefaultPlaybackRate
instead ofplaybackRate
it does though.Anyone else run into this issue?
The text was updated successfully, but these errors were encountered: