summaryrefslogtreecommitdiff
path: root/js/vendor
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-09-11 16:01:12 -0400
committerJules Laplace <jules@okfoc.us>2016-09-11 16:01:12 -0400
commit110e137f1f6a56f93e4edb57bfbdffc1384f78dc (patch)
tree673b725e987281fedbf25e35d5a07816354b1a76 /js/vendor
parent7243fd7cf75e59b2ea45def413788020a663679f (diff)
working
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();