We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 275adc5 + 46f87e4 commit a66aa0eCopy full SHA for a66aa0e
src/looper.js
@@ -392,7 +392,9 @@ class Score {
392
var thisScore = this;
393
for (var i in arguments) {
394
this.parts[i] = arguments[i];
395
- if (i > 0) this.parts[i - 1].nextPart = this.parts[i];
+ if (i > 0) {
396
+ this.parts[i - 1].nextPart = this.parts[i];
397
+ }
398
this.parts[i].onended = function () {
399
thisScore.resetPart(i);
400
playNextPart(thisScore);
src/polysynth.js
@@ -388,6 +388,7 @@ class PolySynth {
388
delete this.notes[n];
389
}
390
this._newest = 0;
391
+ this._oldest = 0;
return;
0 commit comments