Fixing bug
This commit is contained in:
@ -302,6 +302,14 @@ export class UserAPI {
|
|||||||
}
|
}
|
||||||
it = this.iterator
|
it = this.iterator
|
||||||
|
|
||||||
|
get _() {
|
||||||
|
return this.iterator('_');
|
||||||
|
}
|
||||||
|
|
||||||
|
get A() {
|
||||||
|
return this.iterator('A');
|
||||||
|
}
|
||||||
|
|
||||||
// =============================================================
|
// =============================================================
|
||||||
// Drunk mechanism
|
// Drunk mechanism
|
||||||
// =============================================================
|
// =============================================================
|
||||||
|
|||||||
@ -156,8 +156,6 @@ export class MidiConnection{
|
|||||||
console.error('MIDI output not available.');
|
console.error('MIDI output not available.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public sendMidiControlChange(controlNumber: number, value: number): void {
|
public sendMidiControlChange(controlNumber: number, value: number): void {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -696,6 +696,7 @@ function startClock() {
|
|||||||
document
|
document
|
||||||
.removeEventListener("click", startClock);
|
.removeEventListener("click", startClock);
|
||||||
document.removeEventListener("keydown", startOnEnter);
|
document.removeEventListener("keydown", startOnEnter);
|
||||||
|
document.removeEventListener("click", startOnClick)
|
||||||
app.clock.start();
|
app.clock.start();
|
||||||
app.view.focus();
|
app.view.focus();
|
||||||
app.setButtonHighlighting("play", true);
|
app.setButtonHighlighting("play", true);
|
||||||
|
|||||||
Reference in New Issue
Block a user