removed unneeded code
This commit is contained in:
parent
577ebed537
commit
030fbe34e2
|
@ -2,11 +2,9 @@
|
||||||
var keyboard = document.getElementById("piano");
|
var keyboard = document.getElementById("piano");
|
||||||
var svgDoc; // loaded keyboard svg
|
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 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() {
|
window.addEventListener("load", function() {
|
||||||
svgDoc = keyboard.contentDocument;
|
svgDoc = keyboard.contentDocument;
|
||||||
console.log("image loaded");
|
|
||||||
}, false)
|
}, false)
|
||||||
|
|
||||||
// press or unpress keyboard button
|
// press or unpress keyboard button
|
||||||
|
@ -22,15 +20,11 @@ function setKeyState(note, state) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Check if browser supports MIDI
|
// Check if browser supports MIDI
|
||||||
if (navigator.requestMIDIAccess) {
|
if (!navigator.requestMIDIAccess) {
|
||||||
console.log('This browser supports WebMIDI!');
|
console.log('WebMIDI is not supported in this browser. Or Site was not opened via HTTPS');
|
||||||
} else {
|
|
||||||
console.log('WebMIDI is not supported in this browser.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Attempt to establish a connection to the MIDI device
|
// Attempt to establish a connection to the MIDI device
|
||||||
navigator.requestMIDIAccess()
|
navigator.requestMIDIAccess()
|
||||||
.then(onMIDISuccess, onMIDIFailure);
|
.then(onMIDISuccess, onMIDIFailure);
|
||||||
|
|
|
@ -46,10 +46,8 @@ class Notation {
|
||||||
|
|
||||||
to_set.forEach( note => {
|
to_set.forEach( note => {
|
||||||
if (note.clef == "treble") {
|
if (note.clef == "treble") {
|
||||||
console.log("amogus");
|
|
||||||
this.notesTop.push(new Vex.Flow.StaveNote(note));
|
this.notesTop.push(new Vex.Flow.StaveNote(note));
|
||||||
} else {
|
} else {
|
||||||
console.log("amogus");
|
|
||||||
this.notesBottom.push(new Vex.Flow.StaveNote(note));
|
this.notesBottom.push(new Vex.Flow.StaveNote(note));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue