Changes between Initial Version and Version 1 of Ticket #9196, comment 1
- Timestamp:
- Aug 9, 2012, 12:00:50 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9196, comment 1
initial v1 1 1 Context menu can be removed with following command placed in config.js {{{config.removePlugins='contextmenu';}}} or in CKEditor configuration objecy directly on HTML page 2 {{{ var editor = CKEDITOR.replace( 'editor1',{removePlugins: 'contextmenu'});}}}2 {{{ var editor = CKEDITOR.replace( 'editor1',{removePlugins: 'contextmenu'}); }}} 3 3 4 4 Unfortunately because of a bug in 3.6.4 it is not possible to remove CKEditor contextmenu. … … 9 9 Just open ckeditor.js file, 10 10 Find {{{j.tabletools={requires:['table','dialog','contextmenu']}}} 11 and change it to {{{j.tabletools={requires:['table','dialog'] // just remove ,'contextmenu' 12 }}} 11 and change it to {{{ j.tabletools={requires:['table','dialog'] // just remove ,'contextmenu' }}} 13 12 14 13 Please note that {{{config.removePlugins='contextmenu';}}} removes whole context menu.