I am just starting with CKEditor (latest version 4.5.7) using cdn, wanting to use the plugin:
http:
I have downloaded and extracted the files of this plugin in 'myplugins / uploadImage /'.
<textarea name="editor1"></textarea> <script> CKEDITOR.plugins.addExternal( 'uploadImage', '/myplugins/uploadImage/', 'plugin.js' ); CKEDITOR.replace( 'editor1', { extraPlugins: 'uploadImage' } ); </script>
CKEditor works without any plugins, but when I do the above to add the 'uploadImage' plugin, I get the following error in the chrome console:
'Uncaught TypeError: Unable to read' null 'property icons
What am I missing?
source share