fipamo/public/assets/scripts/dash/app/EditPage.js
ro 28a2a2bc1e
text select patch
text select doesn't seem to work on iOS (because of course), so making a
quick adjustment and hopefully that solves the problem
2025-05-18 07:51:58 -06:00

11 lines
211 B
JavaScript

import Editor from './controllers/PageEditor.js';
import Fresh from './controllers/FreshEditor.js';
document.addEventListener(
'DOMContentLoaded',
function () {
new Editor();
//new Fresh();
},
false
);