Skip to content

Commit

Permalink
Fixed #146 : Removed "value." between "entry." and "onmidimessage" in…
Browse files Browse the repository at this point in the history
… Example 9.4.
  • Loading branch information
ryoyakawai committed Apr 24, 2015
1 parent 3d8587f commit 44a1614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ <h3>Handling MIDI Input</h3>
}

function startLoggingMIDIInput( midiAccess, indexOfPort ) {
midiAccess.inputs.forEach( function(entry) {entry.value.onmidimessage = onMIDIMessage;});
midiAccess.inputs.forEach( function(entry) {entry.onmidimessage = onMIDIMessage;});
}</pre>
</section>

Expand Down

0 comments on commit 44a1614

Please sign in to comment.