Reputation: 4953
I include CKEditor source code into my app from CDN (see CKEditor CDN docs)
<script src="//cdn.ckeditor.com/4.13.0/standard-all/ckeditor.js"></script>
I want to add some external plugins
CKEDITOR.editorConfig = function (config) {
config.extraPlugins = 'divarea,confighelper';
}
CKEditor also loads divarea
plugin from CDN. But confighelper
plugin seems to be missing in CDN and CKEditor complains with:
Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "confighelper" was not found at "http://cdn.ckeditor.com/4.13.0/standard-all/plugins/confighelper/plugin.js?t=42..."
so I need to download and unpack its source to my app from CKEditor plugins page. It would be cool to see what plugins are available in CDN. I tried to see CDN's plugins directory but the resource responds with Forbidden
How to see full list of CKEditor plugins available in CDN?
Upvotes: 0
Views: 1225
Reputation: 3151
The following table illustrates plugins provided by CKEditor distributions, available in CKEditor CDN and the CKEditor releases repository.
Upvotes: 2