2024-03-06 11:53:40 -06:00
|
|
|
import Editor from './controllers/PageEditor.js';
|
2025-05-18 07:51:58 -06:00
|
|
|
import Fresh from './controllers/FreshEditor.js';
|
2024-03-06 11:53:40 -06:00
|
|
|
|
|
|
|
document.addEventListener(
|
|
|
|
'DOMContentLoaded',
|
|
|
|
function () {
|
|
|
|
new Editor();
|
2025-05-18 07:51:58 -06:00
|
|
|
//new Fresh();
|
2024-03-06 11:53:40 -06:00
|
|
|
},
|
|
|
|
false
|
|
|
|
);
|