mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2026-02-04 02:25:30 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
export class EditPage extends HTMLElement {
|
|
connectedCallback() {
|
|
setTimeout(() => {
|
|
const form = this.querySelector("form");
|
|
if (form && typeof window.FormLoad === "function") {
|
|
window.FormLoad(form);
|
|
}
|
|
}, 0);
|
|
}
|
|
}
|