removed unneeded code

This commit is contained in:
krippix 2023-06-05 02:35:57 +02:00 committed by Dennis
parent 577ebed537
commit 4ee5494e67
2 changed files with 2 additions and 10 deletions

View file

@ -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);

View file

@ -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));
}
});