James Chapman a9d2d23419
All checks were successful
Docker Image CI / build (push) Successful in 2m12s
Update dependencies
2024-07-10 23:11:47 +01:00

22 lines
810 B
JavaScript

import { Application } from "/lib/hotwired/stimulus/dist/stimulus.js";
import ModalController from "./controllers/modal.js";
import SearchFormController from "./controllers/search-form.js";
import TransactionItemFormController from "./controllers/transaction-item-form.js";
const app = Application.start();
app.register("modal", ModalController);
app.register("search-form", SearchFormController);
app.register("transaction-item-form", TransactionItemFormController);
let timeout;
document.addEventListener("turbo:visit", () => {
clearTimeout(timeout);
});
document.addEventListener("turbo:render", () => {
clearTimeout(timeout);
if (document.getElementById("sidebarToggle").checked) {
timeout = setTimeout(() => document.getElementById("sidebarToggle").checked = false, 500);
}
});