summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-11-11 19:50:27 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-11-11 19:50:27 +0200
commit625206f888a796cf40dadbf571fc23bdf3c3379b (patch)
tree2e9a7b5fd161eaacc576c117d7567f0c52ffb49e /web
parent4ecaa3772604a579b509436179f2e99674d01a8f (diff)
Fixed incorrect stderr function name in javascript
Diffstat (limited to 'web')
-rw-r--r--web/main.js4
-rw-r--r--web/style.css1
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%;