From fe35fb81a9d32fcfde6c3e13e1b530d670567f54 Mon Sep 17 00:00:00 2001 From: Harings Rob Date: Tue, 24 Jan 2023 13:53:43 +0100 Subject: [PATCH] Additional cleanup. --- docs/content/1_documentation/4_form-fields/wysiwyg.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/content/1_documentation/4_form-fields/wysiwyg.md b/docs/content/1_documentation/4_form-fields/wysiwyg.md index b0a182e60..fc4b97b26 100644 --- a/docs/content/1_documentation/4_form-fields/wysiwyg.md +++ b/docs/content/1_documentation/4_form-fields/wysiwyg.md @@ -8,7 +8,7 @@ ```php Wysiwyg::make() ->name('case_study') - ->toolbarOptions(['list-ordered', 'list-unordered']) + ->toolbarOptions([ [ 'header' => [1, 2, false] ], 'ordered', 'bullet' ]) ->maxLength(200) ->note('Some note') ``` @@ -20,7 +20,6 @@ Wysiwyg::make() 'case_study', 'label' => 'Case study text', - 'toolbarOptions' => ['list-ordered', 'list-unordered'], 'placeholder' => 'Case study text', 'maxlength' => 200, 'note' => 'Hint message', @@ -54,7 +52,7 @@ Wysiwyg::make() @formField('wysiwyg', [ 'name' => 'case_study', 'label' => 'Case study text', - 'toolbarOptions' => [ [ 'header' => [1, 2, false] ], 'list-ordered', 'list-unordered', [ 'indent' => '-1'], [ 'indent' => '+1' ] ], + 'toolbarOptions' => [ [ 'header' => [1, 2, false] ], 'placeholder' => 'Case study text', 'maxlength' => 200, 'editSource' => true,