Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/EMGroup/js-eden
Browse files Browse the repository at this point in the history
  • Loading branch information
knicos committed Jul 12, 2017
2 parents e33d3a3 + 87cda29 commit 3d5d0ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/midi/midi.js-e
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ proc bindMIDINote {


if (velocity === undefined && velocitySym.definition === undefined) {
velocitySym.assign(127, agent);
velocitySym.assign(127, eden.root.scope);
velocity = 127;
}

Expand All @@ -474,7 +474,7 @@ proc bindMIDINote {
} else {
strike = strikeSym.value();
if (strike === undefined && strikeSym.definition === undefined) {
strikeSym.assign(true, agent);
strikeSym.assign(true, eden.root.scope);
strike = true;
}
noteSym.addJSObserver("bind", function (symbol, note) {
Expand Down

0 comments on commit 3d5d0ad

Please sign in to comment.