Browse Source

Maybe fix the audio starting thing

main
Luke Murphy 4 years ago
parent
commit
059e82344d
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 7
      voicegardens/static/voicegardens.js

7
voicegardens/static/voicegardens.js

@ -61,6 +61,12 @@ function record() {
}
}
function enableAudioContext() {
if (getAudioContext().state !== "running") {
getAudioContext().resume();
}
}
function stop() {
/**
* Stop recording a new sound.
@ -152,6 +158,7 @@ function setupRecording() {
recordButton = createImg("../static/images/RECORD-COLOR.png");
recordButton.mousePressed(record);
recordButton.touchPressed(enableAudioContext);
recordButton.class("button record");
stopButton = createImg("../static/images/STOP-BW.png");

Loading…
Cancel
Save