Forgot to commit ckeditor bbcode plugin and conf

This commit is contained in:
2013-01-27 01:25:42 -05:00
parent cc00d7c6a2
commit 6b0932fb96
5 changed files with 1077 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
CKEDITOR.editorConfig = function( config ) {
config.extraPlugins = 'bbcode';
config.toolbar = [
['Source', '-', 'Save','NewPage','-','Undo','Redo'],
['Find','Replace','-','SelectAll','RemoveFormat'],
['Link', 'Unlink', 'Image'],
'/',
['FontSize', 'Bold', 'Italic','Underline'],
['NumberedList','BulletedList','-','Blockquote'],
['TextColor', '-', 'Smiley','SpecialChar', '-', 'Maximize']
];
}