Skip to content

Commit

Permalink
Merge pull request #9052 from ckeditor/i/8884
Browse files Browse the repository at this point in the history
Fix: Switched indent buttons order in default build config to "outdent, indent". Closes #8884.
  • Loading branch information
mlewand committed Feb 19, 2021
2 parents 44e90bd + e23e65a commit 1e42175
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/builds/guides/development/dll-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ An example classic editor build configuration using dll bundles:
'bulletedList',
'numberedList',
'|',
'indent',
'outdent',
'indent',
'|',
'uploadImage',
'blockQuote',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon-block/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ BalloonEditor.defaultConfig = {
'bulletedList',
'numberedList',
'|',
'indent',
'outdent',
'indent',
'|',
'uploadImage',
'blockQuote',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ BalloonEditor.defaultConfig = {
'bulletedList',
'numberedList',
'|',
'indent',
'outdent',
'indent',
'|',
'uploadImage',
'blockQuote',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-classic/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ ClassicEditor.defaultConfig = {
'bulletedList',
'numberedList',
'|',
'indent',
'outdent',
'indent',
'|',
'uploadImage',
'blockQuote',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ DecoupledEditor.defaultConfig = {
'numberedList',
'bulletedList',
'|',
'indent',
'outdent',
'indent',
'|',
'link',
'blockquote',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-inline/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ InlineEditor.defaultConfig = {
'bulletedList',
'numberedList',
'|',
'indent',
'outdent',
'indent',
'|',
'uploadImage',
'blockQuote',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ClassicEditor
'numberedList',
'bulletedList',
'|',
'indent',
'outdent',
'indent',
'|',
'link',
'uploadImage',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ClassicEditor.defaultConfig = {
'|',
'bulletedList', 'numberedList',
'|',
'indent', 'outdent',
'outdent', 'indent',
'|',
'link', 'blockQuote',
'|',
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/mathtype.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ClassicEditor
toolbar: [
'MathType', 'ChemType', '|', 'heading', 'fontFamily', 'fontSize', 'fontColor', 'fontBackgroundColor',
'highlight', 'alignment', '|', 'bold', 'italic', 'underline', 'strikethrough', 'code', 'subscript',
'superscript', 'removeFormat', '|', 'bulletedList', 'numberedList', 'indent', 'outdent', '|', 'link',
'superscript', 'removeFormat', '|', 'bulletedList', 'numberedList', 'outdent', 'indent', '|', 'link',
'blockQuote', 'uploadImage', 'mediaEmbed', 'insertTable', '|', 'undo', 'redo'
],
image: {
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/wproofreader.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ClassicEditor
'heading', 'fontFamily', 'fontSize', 'fontColor', 'fontBackgroundColor', 'highlight', 'alignment', '|',
'bold', 'italic', 'underline', 'strikethrough', 'code', 'subscript', 'superscript', 'removeFormat', '|',
'link', 'blockQuote', 'uploadImage', 'mediaEmbed', 'insertTable', '|',
'bulletedList', 'numberedList', 'indent', 'outdent', '|', 'undo', 'redo',
'bulletedList', 'numberedList', 'outdent', 'indent', '|', 'undo', 'redo',
'|'
],
image: {
Expand Down

0 comments on commit 1e42175

Please sign in to comment.