Skip to content

Commit

Permalink
Releasing: 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody Lundquist committed Jul 22, 2014
1 parent c9e932c commit 326cd9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "BandJS",
"version": "1.1.1",
"version": "1.1.2",
"main": "dist/band.min.js",
"ignore": [
"**/.*",
Expand Down
11 changes: 3 additions & 8 deletions dist/band.js
Expand Up @@ -450,14 +450,9 @@ module.exports = OscillatorInstrumentPack;
* @constructor
*/
function OscillatorInstrumentPack(name, audioContext) {
var types = {
sine: 0,
square: 1,
sawtooth: 2,
triangle: 3
};
var types = ['sine', 'square', 'sawtooth', 'triangle'];

if (typeof types[name] === 'undefined') {
if (types.indexOf(name) === -1) {
throw new Error(name + ' is not a valid Oscillator type');
}

Expand All @@ -468,7 +463,7 @@ function OscillatorInstrumentPack(name, audioContext) {
// Connect note to volume
o.connect(destination);
// Set pitch type
o.type = types[name];
o.type = name;
// Set frequency
o.frequency.value = frequency;

Expand Down

0 comments on commit 326cd9c

Please sign in to comment.