aimeos / ai-cms-grapesjs

GrapesJS CMS integration into Aimeos
GNU Lesser General Public License v2.1
22 stars 18 forks source link

Full GrapeJS code in every admin page + CKEditor #20

Closed Ameeko closed 2 years ago

Ameeko commented 2 years ago

Each admin page induces ckeditor.js <script src = "https://cdn.jsdelivr.net/npm/ckeditor@4/ckeditor.js"> </script> Is this necessary?

Each admin page puts the full GrapeJS code into this JS: /admin/default/jqadm/file/js I think this is unnecessary, it would be enough to just pull it into the CMS page

aimeos commented 2 years ago

Up to now, all CSS/JS files are combined and delivered to the browser. In the frontend, we've already split the files to one for each component in dev-master. For the backend, it's likely to be done in the future.

Ameeko commented 2 years ago

and the ckeditor? is it used somewhere in the system?

aimeos commented 2 years ago

Yes, in all "Text" sub-panels.

Ameeko commented 2 years ago

You're right. I understood. Thanks.