Added site to this repo and Gitlab to build it

This commit is contained in:
Leon Mika 2025-10-26 09:25:36 +11:00
parent 8dafa6fa8f
commit c474b18232
50 changed files with 1812 additions and 1 deletions

View file

@ -0,0 +1,17 @@
import { Controller } from "@hotwired/stimulus"
export class KeybindingsController extends Controller {
static targets = [
"showBindingNames",
"keyBindingTable"
];
bindingNamesChanged() {
let showBindingNames = this.showBindingNamesTarget;
if (showBindingNames.checked) {
this.keyBindingTableTarget.classList.add("show-binding-names");
} else {
this.keyBindingTableTarget.classList.remove("show-binding-names");
}
}
}