mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
|
import { Controller } from "@hotwired/stimulus"
|
||
|
import { install, uninstall } from "@github/hotkey"
|
||
|
|
||
|
// Connects to data-controller="hotkey"
|
||
|
export default class extends Controller {
|
||
|
connect() {
|
||
|
install(this.element)
|
||
|
}
|
||
|
|
||
|
disconnect() {
|
||
|
uninstall(this.element)
|
||
|
}
|
||
|
}
|