diff --git a/vocoder/static/vocoder.js b/vocoder/static/vocoder.js index 68d56c6..bfcd6e8 100644 --- a/vocoder/static/vocoder.js +++ b/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); }