You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.4 KiB
22 lines
1.4 KiB
/** |
|
* @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. |
|
* For licensing, see https://ckeditor.com/legal/ckeditor-oss-license |
|
*/ |
|
|
|
CKEDITOR.editorConfig = function( config ) { |
|
config.toolbar = [ |
|
{ name: 'document', items: [ 'Source', '-', 'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates' ] }, |
|
{ name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] }, |
|
{ name: 'editing', items: [ 'Find', 'Replace', '-', 'SelectAll', '-', 'Scayt' ] }, |
|
{ name: 'forms', items: [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] }, |
|
'/', |
|
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'CopyFormatting', 'RemoveFormat' ] }, |
|
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', 'Language' ] }, |
|
{ name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, |
|
{ name: 'insert', items: [ 'Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe' ] }, |
|
'/', |
|
{ name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] }, |
|
{ name: 'colors', items: [ 'TextColor', 'BGColor' ] }, |
|
{ name: 'tools', items: [ 'Maximize', 'ShowBlocks' ] } |
|
]; |
|
};
|
|
|