Skip to content

Commit

Permalink
Clear all the notes function
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeigarts committed Nov 4, 2013
1 parent 67f86da commit d437cf0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/band.js
Expand Up @@ -273,6 +273,8 @@
* @param json
*/
this.load = function(json) {
this.destroy();

if (! json) {
throw new Error('JSON is required for this method to work.');
}
Expand Down Expand Up @@ -349,7 +351,7 @@
};

/**
* Stop playing all music and reset the song
* Stop playing all music and rewind the song
*
* @param fadeOut boolean - should the song fade out?
*/
Expand Down Expand Up @@ -379,6 +381,14 @@
}
};

/**
* Stop playing all music and destroy all instruments and notes
*/
this.destroy = function() {
this.stop(false);
instruments = [];
}

/**
* Set Master Volume
*/
Expand Down

0 comments on commit d437cf0

Please sign in to comment.