Hello,
I get an issue using "slideshow" plugin, when I put this one on "config.js" my "align" plugin doesn't work...
My code :
config.extraPlugins = 'justify'; // doesn't work config.extraPlugins = 'slideshow'; // works
An other way :
//config.extraPlugins = 'justify'; // doesn't work config.extraPlugins = 'slideshow'; // works
The last way :
config.extraPlugins = 'justify'; // works //config.extraPlugins = 'slideshow'; // doesn't work
You are overwriting the first
You are overwriting the first configuration option with the second :) The correct syntax for config.extraPlugins is:
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Thanks!
Thanks!
thank you!
thank you!