first commit
This commit is contained in:
25
libraries/framework/vendor/plugins/ckeditor/config.js
vendored
Normal file
25
libraries/framework/vendor/plugins/ckeditor/config.js
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
CKEDITOR.editorConfig = function( config ) {
|
||||
config.autoParagraph = false;
|
||||
config.toolbar = 'MyToolbar';
|
||||
config.toolbar_MyToolbar =
|
||||
[
|
||||
['Cut','Copy','Paste','PasteText','PasteFromWord'],
|
||||
['TransformTextToUppercase', 'TransformTextToLowercase', 'TransformTextCapitalize', 'TransformTextSwitcher'],
|
||||
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
|
||||
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
|
||||
['NumberedList','BulletedList','CreateDiv'],
|
||||
['TextColor','BGColor'],
|
||||
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
|
||||
['Link','Unlink'],
|
||||
['Image','Flash','Youtube','Table','HorizontalRule','SpecialChar'],
|
||||
['Styles','Format','Font','FontSize','Source','Maximize']
|
||||
];
|
||||
config.toolbar = 'Basic';
|
||||
config.toolbar_Basic =
|
||||
[
|
||||
['Bold', 'Italic','Underline', 'Strike', '-', 'TextColor','BGColor', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink', '-', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','Source']
|
||||
];
|
||||
config.skin = 'bootstrapck';
|
||||
config.defaultLanguage = 'pl';
|
||||
config.extraPlugins = 'justify,font,tableresize,autogrow,find,texttransform,colorbutton';
|
||||
};
|
||||
Reference in New Issue
Block a user