diff options
| author | Daniel Sutcliffe <dansut@users.sourceforge.net> | 2010-03-22 15:36:32 +0000 |
|---|---|---|
| committer | Daniel Sutcliffe <dansut@users.sourceforge.net> | 2010-03-22 15:36:32 +0000 |
| commit | 21d22e8a910327ca11ea8f11d7a10380c7fc7c51 (patch) | |
| tree | 39164f6768f038b2631a4e58abfb096a1403c914 /ckconfig.bitweaver.js | |
| parent | 8df4bebb98a5ce89585fd057398e45c8212c2486 (diff) | |
| download | ckeditor-21d22e8a910327ca11ea8f11d7a10380c7fc7c51.tar.gz ckeditor-21d22e8a910327ca11ea8f11d7a10380c7fc7c51.tar.bz2 ckeditor-21d22e8a910327ca11ea8f11d7a10380c7fc7c51.zip | |
Make toolbar definitions actually match what is available in ckeditor 3.1
Diffstat (limited to 'ckconfig.bitweaver.js')
| -rw-r--r-- | ckconfig.bitweaver.js | 57 |
1 files changed, 20 insertions, 37 deletions
diff --git a/ckconfig.bitweaver.js b/ckconfig.bitweaver.js index 15d93af..3e43b1e 100644 --- a/ckconfig.bitweaver.js +++ b/ckconfig.bitweaver.js @@ -5,75 +5,58 @@ CKEDITOR.editorConfig = function( config ) { /* Start of BITWEAVER toolbar sets */ config.toolbar_Supported = [ ['Source','-','Preview'], - ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], + ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print','SpellChecker'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], '/', ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], - ['OrderedList','UnorderedList','-','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], + ['NumberedList','BulletedList','-','Outdent','Indent'], + ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], - ['Table','Rule','Smiley','SpecialChar','PageBreak'], + ['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', - ['Style','FontFormat','FontName','FontSize'], + ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], - ['FitWindow','-','About'] + ['Maximise','ShowBlocks','-','About'] ]; config.toolbar_Beginner = [ ['Bold','Italic','Underline'], - ['OrderedList','UnorderedList'], + ['NumberedList','BulletedList'], ['Link','Unlink','Anchor'], - ['Table','Rule','Smiley','SpecialChar','PageBreak'], - ['FitWindow','-','About'] + ['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], + ['Maximise','-','About'] ]; config.toolbar_Intermediate = [ - ['Cut','Copy','Paste','PasteText','PasteWord'], + ['Cut','Copy','Paste','PasteText','PasteFromWord'], ['Undo','Redo','-','Find','Replace','-','SelectAll'], '/', ['Bold','Italic','Underline'], - ['OrderedList','UnorderedList','-','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], + ['NumberedList','BulletedList','-','Outdent','Indent'], + ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], - ['Table','Rule','Smiley','SpecialChar','PageBreak'], + ['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', ['TextColor','BGColor'], - ['FitWindow','-','About'] + ['Maximise','-','About'] ]; config.toolbar_Advanced = [ ['Source','-','Preview'], - ['Cut','Copy','Paste','PasteText','PasteWord'], + ['Cut','Copy','Paste','PasteText','PasteFromWord'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], '/', ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], - ['OrderedList','UnorderedList','-','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], + ['NumberedList','BulletedList','-','Outdent','Indent'], + ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Link','Unlink','Anchor'], - ['Table','Rule','Smiley','SpecialChar','PageBreak'], + ['Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', - ['Style','FontFormat','FontName','FontSize'], + ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], - ['FitWindow','-','About'] + ['Maximise','ShowBlocks','-','About'] ]; -config.toolbar_All = [ - ['Source','DocProps','-','Save','NewPage','Preview','-','Templates'], - ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'], - ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'], - '/', - ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], - ['OrderedList','UnorderedList','-','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], - ['Link','Unlink','Anchor'], - ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'], - '/', - ['Style','FontFormat','FontName','FontSize'], - ['TextColor','BGColor'], - ['FitWindow','-','About'] -] ; - // to add split plugin add this to array of tools in your selected ToolbarSet // ['Split'] // to add attachment plugin add this to array of tools in your selected ToolbarSet |
