From d23b6556a73322316b07139df5e4c65fac48e3eb Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 21 Dec 2019 16:28:45 +0700 Subject: [PATCH] Remove TODOs --- vocoder/static/vocoder.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); }