From: Benoît Pin <pin@cri.ensmp.fr>
Date: Tue, 16 Aug 2011 09:48:54 +0000 (+0200)
Subject: On fait rentrer tout ça sur deux lignes.
X-Git-Tag: 3.6.1~30
X-Git-Url: https://svn.cri.mines-paristech.fr/git/ckeditor.git/commitdiff_plain/9195a0ee849717e632f72ee69c93a95ff6661f9a

On fait rentrer tout ça sur deux lignes.
---

diff --git a/skins/ckeditor/config.js b/skins/ckeditor/config.js
index 867438d..19ea463 100644
--- a/skins/ckeditor/config.js
+++ b/skins/ckeditor/config.js
@@ -9,6 +9,8 @@ CKEDITOR.editorConfig = function( config )
 	// config.language = 'fr';
 	// config.uiColor = '#AADC6E';
 	config.toolbar = [
+		{ name: 'styles',		items : [ 'Styles', 'Format', 'Font', 'FontSize' ] },
+		{ name: 'colors',		items : [ 'TextColor', 'BGColor' ] },
 		{ name: 'document',		items : [ 'Maximize', 'ShowBlocks', 'Source'] },
 		{ name: 'editing',		items : [ 'Find','Replace', '-', 'SelectAll'] },
 		{ name: 'clipboard',	items : [ 'PasteFromWord', '-', 'Undo', 'Redo' ] },
@@ -17,8 +19,5 @@ CKEDITOR.editorConfig = function( config )
 		{ name: 'paragraph',	items : [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
 		{ name: 'links',		items : [ 'Link', 'Unlink', 'Anchor' ] },
 		{ name: 'insert',		items : [ 'Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'] },
-		'/',
-		{ name: 'styles',		items : [ 'Styles', 'Format', 'Font', 'FontSize' ] },
-		{ name: 'colors',		items : [ 'TextColor', 'BGColor' ] },
 	];
 };