Browse Source

Remove TODOs

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

3
vocoder/static/vocoder.js

@ -81,7 +81,6 @@ function setupRecording() {
recording = new p5.SoundFile();
// TODO: buttons are just for experimenting ...
recordButton = createButton("record");
recordButton.position(10, 90);
recordButton.mousePressed(record);
@ -200,7 +199,7 @@ function setup() {
/**
* The p5.js initial setup function.
**/
createCanvas(canvasWidth, canvasHeight); // TODO: experimenting for now ...
createCanvas(canvasWidth, canvasHeight);
setupRecording();
frameRate(frameRate);
}

Loading…
Cancel
Save