From 8a25e3882746fa7e772a8f73b160f5fa2e05a875 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 2 May 2013 09:07:17 -0400 Subject: [PATCH] Add indent group to ckeditor toolbar --- UI/WebServerResources/ckeditor/config.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/UI/WebServerResources/ckeditor/config.js b/UI/WebServerResources/ckeditor/config.js index 541852c14..fe1e9974d 100644 --- a/UI/WebServerResources/ckeditor/config.js +++ b/UI/WebServerResources/ckeditor/config.js @@ -5,12 +5,11 @@ CKEDITOR.editorConfig = function( config ) { config.toolbarGroups = [ - { name: 'basicstyles', groups: [ 'basicstyles' ] }, - { name: 'paragraph', groups: [ 'list', 'align' ] }, + [ 'Bold', 'Italic', 'TextColor' ], + ['Font', 'FontSize'], + { name: 'paragraph', groups: [ 'list', 'indent', 'align' ] }, { name: 'links' }, { name: 'insert' }, - ['Font', 'FontSize'], - { name: 'colors' }, ['SpellChecker','Scayt'] ];