Open quyen91 opened 8 years ago
Remove some unnecessary field http://docs.cksource.com/CKEditor_3.x/Howto/Plugin_Removal Config toolbar http://ckeditor.com/latest/samples/toolbarconfigurator/index.html#basic Change p tag into br tag when press enter
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.uiColor = '#949AAA'; config.enterMode = CKEDITOR.ENTER_BR; };
when we want to get content from ckeditor with truncate function. Simply add escape: false inside truncate function
truncate
escape: false
Remove some unnecessary field http://docs.cksource.com/CKEditor_3.x/Howto/Plugin_Removal Config toolbar http://ckeditor.com/latest/samples/toolbarconfigurator/index.html#basic Change p tag into br tag when press enter