mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-04-02 08:21:57 -04:00
9 lines
325 B
JavaScript
9 lines
325 B
JavaScript
document.addEventListener("DOMContentLoaded", () => {
|
|
if (typeof Stimulus === "undefined") {
|
|
console.error("Stimulus is not loaded. Make sure the UMD script is included first.");
|
|
return;
|
|
}
|
|
|
|
const application = Stimulus.Application.start();
|
|
application.register("nested-form", window.NestedFormController);
|
|
}); |