I have the following below currently for ckeditor. I read in the documentation to do
Thank you!
config.browserContextMenuOnCtrl = false. But, when I try to add it below it doesn't work. There are other config items I'd like to add also, but how do I add these to my code below? Nothing seems to work.
Thank you!
var ckeditor_config = {
toolbar:
[
{ name: 'basicstyles', items : [ 'Bold','Italic','Strike' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] },
{ name: 'styles', items : [ 'Format' ] },
{ name: 'clipboard', items : [ 'Undo','Redo'] },
{ name: 'source', items: ['Source']}
],
height: '330px',
resize_dir: 'vertical'
};
$('.editor').ckeditor(ckeditor_config);

Re: Hide contextmenu, editing config options
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.browserContextMenuOnCtrl = false; };But this did not work. I've tried clearing cache and using a new browser too.