summaryrefslogtreecommitdiff
path: root/js/vendor
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor')
-rw-r--r--js/vendor/StartAudioContext.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/vendor/StartAudioContext.js b/js/vendor/StartAudioContext.js
index 1823b04..0b2883f 100644
--- a/js/vendor/StartAudioContext.js
+++ b/js/vendor/StartAudioContext.js
@@ -78,7 +78,6 @@
StartAudioContext.onStarted = function(cb){
//if it's already started, invoke the callback
if (StartAudioContext.isStarted()){
- console.log("is started")
cb();
} else {
StartAudioContext._onStarted.push(cb);
@@ -148,7 +147,6 @@
* event has been triggered.
*/
function onTap(){
-
//start the audio context with a silent oscillator
if (StartAudioContext.context && !StartAudioContext.isStarted()){
var osc = StartAudioContext.context.createOscillator();