Skip to content

Commit

Permalink
Merge stable into master
Browse files Browse the repository at this point in the history
  • Loading branch information
CKTravisBot authored Jul 26, 2023
2 parents 57607a1 + 4001eeb commit 22db2cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ function CustomHeading( editor ) {
}

DecoupledEditor.create( document.querySelector( '#mini-inspector-heading-interactive' ), {
plugins: [ Essentials, CustomHeading ]
plugins: [ Essentials, CustomHeading ],
toolbar: []
} )
.then( editor => {
window.editor = editor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ function CustomHeading( editor ) {
}

DecoupledEditor.create( document.querySelector( '#mini-inspector-heading' ), {
plugins: [ Essentials, CustomHeading ]
plugins: [ Essentials, CustomHeading ],
toolbar: []
} )
.then( editor => {
window.editor = editor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ function Structure( editor ) {
}

DecoupledEditor.create( document.querySelector( '#mini-inspector-structure' ), {
plugins: [ Essentials, Paragraph, Structure ]
plugins: [ Essentials, Paragraph, Structure ],
toolbar: []
} )
.then( editor => {
window.editor = editor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ function Image( editor ) {
}

DecoupledEditor.create( document.querySelector( '#mini-inspector-upcast-attribute' ), {
plugins: [ Essentials, Image ]
plugins: [ Essentials, Image ],
toolbar: []
} )
.then( editor => {
MiniCKEditorInspector.attach(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ function Example( editor ) {
}

DecoupledEditor.create( document.querySelector( '#mini-inspector-upcast-element' ), {
plugins: [ Essentials, Example ]
plugins: [ Essentials, Example ],
toolbar: []
} )
.then( editor => {
MiniCKEditorInspector.attach(
Expand Down

0 comments on commit 22db2cf

Please sign in to comment.