I've been wanting to move my custom plugins into a seperate folder, so they won't get entangled with the original source code.
But sadly, the CKEDITOR.plugins.addExternal command appears to do absolutely nothing. It does not add the plugin, nor does it throw an error in Firebug.
The plugin is placed in the /alek/lib/cke/randomizer folder.
This is the code I added to my config.js:
What on earth could be wrong? Been bashing my skull in about this for days now...
But sadly, the CKEDITOR.plugins.addExternal command appears to do absolutely nothing. It does not add the plugin, nor does it throw an error in Firebug.
The plugin is placed in the /alek/lib/cke/randomizer folder.
This is the code I added to my config.js:
CKEDITOR.plugins.addExternal("randomizer", "/alek/lib/cke/randomizer/");
What on earth could be wrong? Been bashing my skull in about this for days now...
Re: CKEDITOR.plugins.addExternal does nothing
Re: CKEDITOR.plugins.addExternal does nothing
Re: CKEDITOR.plugins.addExternal does nothing
As I said addExternal only tells CKEditor to load those files from a different path, but there's no real difference; everything else should be just the same unless you have a bug in your code.
Re: CKEDITOR.plugins.addExternal does nothing
My skull feels better now.