text select doesn't seem to work on iOS (because of course), so making a quick adjustment and hopefully that solves the problem
11 lines
211 B
JavaScript
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
|
|
);
|