Hi all, I'm wondering what the correct approach is to using CKEditor with require.js. Right now, I'm running into a whole host of issues- mainly around plugins- has anyone been through this before?
I'm able to get the editor itself to load, but not plugins. My require.js config looks like this (Coffeescript excerpts):
...
path: ckeditor : "lib/ckeditor-4.4.6/ckeditor"
...
shim:
ckeditor:
exports: 'CKEDITOR'
deps: ['jquery']
...
Anyone have any experience with this?
