removed unneeded code
This commit is contained in:
parent
577ebed537
commit
030fbe34e2
|
@ -2,11 +2,9 @@
|
|||
var keyboard = document.getElementById("piano");
|
||||
var svgDoc; // loaded keyboard svg
|
||||
const keysB = [2,5,7,10,12,14,17,19,22,24,26,29,31,34,36,38,41,43,46,48,50,53,55,58,60,62,65,67,70,72,74,77,79,82,84,86]
|
||||
const keyTo = {}
|
||||
|
||||
window.addEventListener("load", function() {
|
||||
svgDoc = keyboard.contentDocument;
|
||||
console.log("image loaded");
|
||||
}, false)
|
||||
|
||||
// press or unpress keyboard button
|
||||
|
@ -22,15 +20,11 @@ function setKeyState(note, state) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// Check if browser supports MIDI
|
||||
if (navigator.requestMIDIAccess) {
|
||||
console.log('This browser supports WebMIDI!');
|
||||
} else {
|
||||
console.log('WebMIDI is not supported in this browser.');
|
||||
if (!navigator.requestMIDIAccess) {
|
||||
console.log('WebMIDI is not supported in this browser. Or Site was not opened via HTTPS');
|
||||
}
|
||||
|
||||
|
||||
// Attempt to establish a connection to the MIDI device
|
||||
navigator.requestMIDIAccess()
|
||||
.then(onMIDISuccess, onMIDIFailure);
|
||||
|
|
|
@ -46,10 +46,8 @@ class Notation {
|
|||
|
||||
to_set.forEach( note => {
|
||||
if (note.clef == "treble") {
|
||||
console.log("amogus");
|
||||
this.notesTop.push(new Vex.Flow.StaveNote(note));
|
||||
} else {
|
||||
console.log("amogus");
|
||||
this.notesBottom.push(new Vex.Flow.StaveNote(note));
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue