Your IP : 18.223.158.29
CKEDITOR.plugins.add( 'readmore', { init: function( editor ) { var pluginName = 'Readmore'; // Add a command to insert the content editor.addCommand( 'addTabbedContent', {exec: function (editor) { editor.insertHtml( ' [--readmore--] '); }}); // Icon editor.ui.addButton('Readmore', { label: 'Insert read more', command: 'addTabbedContent', icon: this.path + 'images/icon.png' }); } }); |