diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/main.js | 4 | ||||
-rw-r--r-- | web/style.css | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/web/main.js b/web/main.js index ddd39c0..ff78eb4 100644 --- a/web/main.js +++ b/web/main.js @@ -227,7 +227,7 @@ function main() { window.requestAnimationFrame(analyserNodeCallback); }) .catch(function(err) { - console.err('Could not get the microphone'); - console.err(err); + console.error('Could not open the microphone stream'); + console.error(err); }); } diff --git a/web/style.css b/web/style.css index 77034e9..f704d6f 100644 --- a/web/style.css +++ b/web/style.css @@ -9,6 +9,7 @@ width: calc(100% - 2px); height: 30px; position: relative; + background: rgb(200, 200, 200); } #pitch-indicator-bar { height: 100%; |