-
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
If I use the following code to detect midi support on https://pomax.github.io/mini-daw/:
async function connectMIDI() {
if (!navigator.requestMIDIAccess) {
// Warn the user that they won't have MIDI functionality. Then load anyway
alert(
`WebMIDI is not supported (without plugins?) in this browser.\nYou can still play around, just... no MIDI functionality, obviously.`
);
} else {
try {
const result = await navigator.requestMIDIAccess();
return onMidiSuccess(result);
} catch (e) {
onMidiFail();
}
}
}then the jazz midi plugin does not appear to kick in using current Firefox.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels