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
{{ message }}
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
Anyone who is monitoring this, the solution to this is pretty easy, in the example there is a line like this:
const audioContext = new (window.AudioContext || window.webkitAudioContext)();
Really what you want to do is create the audioContext in your click handler, not as a const. E.g.
var audioContext = null;
$(".record").click(function() {
if (audioContext == null) {
audioContext = new (window.AudioContext || window.webkitAudioContext)();
}
// rest of example will work now
});
thank you very much !
The text was updated successfully, but these errors were encountered: