Ticket #5799: 5799.patch
File 5799.patch, 1023 bytes (added by , 13 years ago) |
---|
-
_source/plugins/liststyle/plugin.js
7 7 { 8 8 CKEDITOR.plugins.liststyle = 9 9 { 10 requires : [ 'dialog' ], 10 11 init : function( editor ) 11 12 { 12 13 13 editor.addCommand( 'numberedListStyle', new CKEDITOR.dialogCommand( 'numberedListStyle' ) ); 14 14 CKEDITOR.dialog.add( 'numberedListStyle', this.path + 'dialogs/liststyle.js' ); 15 15 editor.addCommand( 'bulletedListStyle', new CKEDITOR.dialogCommand( 'bulletedListStyle' ) ); 16 16 CKEDITOR.dialog.add( 'bulletedListStyle', this.path + 'dialogs/liststyle.js' ); 17 17 18 //Register map group;19 editor.addMenuGroup("list", 108);20 18 // If the "menu" plugin is loaded, register the menu items. 21 19 if ( editor.addMenuItems ) 22 20 { 21 //Register map group; 22 editor.addMenuGroup("list", 108); 23 23 24 editor.addMenuItems( 24 25 { 25 26 numberedlist :