refactor: split editor in JS modules

This commit is contained in:
2025-04-29 18:29:52 +02:00
committed by Louis Heredero
parent 585731b8a6
commit 42a7ba0fda
11 changed files with 437 additions and 235 deletions

View File

@ -0,0 +1,6 @@
import Editor from "./editor.mjs";
window.addEventListener("load", () => {
const editor = new Editor()
window.editor = editor
})