removed unneeded code

This commit is contained in:
krippix 2023-06-05 02:35:57 +02:00
parent 577ebed537
commit 030fbe34e2
2 changed files with 2 additions and 10 deletions

View file

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

View file

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