laopunk / chordPlayer

WebAudio musical audio chord player
MIT License
5 stars 1 forks source link

failing import of notePlayer (due to missing camelCase) #1

Closed hjek closed 8 years ago

hjek commented 8 years ago

patch:

diff --git a/src/chordPlayer.js b/src/chordPlayer.js
index 1a31665..9f2019b 100644
--- a/src/chordPlayer.js
+++ b/src/chordPlayer.js
@@ -1,7 +1,7 @@
 //JS modules
 //var sc  = require('../js/scalesAPI.js')
 var _ = require('lodash')
-    , np = require('noteplayer')
+    , np = require('notePlayer')
 ;

 /**
@@ -222,4 +222,4 @@ chordPlayer.prototype.setVerbose = function(v) {
     this.verbose = (v === void 0 || v === true) ? true : false;
 };

-module.exports = chordPlayer
\ No newline at end of file
+module.exports = chordPlayer
laopunk commented 8 years ago

Thanks hjek, patched and pushed to master now