Hi
I am having a hard time, figuring out how to install a plugin. I want to use the enhanced image plugin:
http://ckeditor.com/addon/image2
now from what i can read from the manual, i just add it to the plugin folder, and then i have to tell ckeditor, that there is a new plugin. But in what file do i write that?
http://docs.ckeditor.com/#!/guide/dev_plugins
it only says to add:
config.extraPlugins = 'image2';
But not to what file.
To ckeditor/config.js, bottom
To ckeditor/config.js, bottom, before the };
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
like this?
like this?
/**
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
CKEDITOR.config.extraPlugins = 'image2';
};
in that case its not working?
Sorry to be asking but are
Sorry to be asking but are you using CKEditor 4.3? It only works from that version onward. If you are, try refreshing your cache (not just F5).
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
sorry my mistake, i was
sorry my mistake, i was asuming i was running 4.3 but i was not. Its working now. THank you!