diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-07-16 02:55:21 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-07-16 02:55:21 -0400 |
commit | a5ca317ae0d2169a70d224ff65ad12f6e9aaa5e0 (patch) | |
tree | 92dfa181c74e42b53155c793f95e6c374ebe41bf | |
parent | a997c4d413ea285d5405e37154f2b0a26b2897ea (diff) | |
download | guff-a5ca317ae0d2169a70d224ff65ad12f6e9aaa5e0.tar.bz2 guff-a5ca317ae0d2169a70d224ff65ad12f6e9aaa5e0.zip |
clean up ckeditor toolbar
-rw-r--r-- | data/assets/ckeditor-4.5.8-custom/config.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/data/assets/ckeditor-4.5.8-custom/config.js b/data/assets/ckeditor-4.5.8-custom/config.js index 9de2f1a..70c76b0 100644 --- a/data/assets/ckeditor-4.5.8-custom/config.js +++ b/data/assets/ckeditor-4.5.8-custom/config.js @@ -11,12 +11,17 @@ CKEDITOR.editorConfig = function( config ) { // The toolbar groups arrangement, optimized for two toolbar rows. config.toolbarGroups = [ { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, - { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, + + // disabled spellhecker (pabs 2016-07-16) + // { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, + { name: 'editing', groups: [ 'find', 'selection' ] }, { name: 'links' }, { name: 'insert' }, { name: 'forms' }, - { name: 'tools' }, + + // moved fullscreen button to right side (pabs 2016-07-16) { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, + { name: 'tools' }, { name: 'others' }, '/', { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, |