Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #69 from ckeditor/t/ckeditor5-theme-lark/135
Browse files Browse the repository at this point in the history
Other: Removed the `.ck-editor-toolbar` class from the toolbar (see ckeditor/ckeditor5-theme-lark#135).
  • Loading branch information
oleq authored Feb 16, 2018
2 parents ed124d2 + db71388 commit 6b4670c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions src/classiceditoruiview.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ export default class ClassicEditorUIView extends BoxedEditorUIView {
*/
this.toolbar = new ToolbarView( locale );

this.toolbar.extendTemplate( {
attributes: {
class: 'ck-editor-toolbar'
}
} );

/**
* Editable UI view.
*
Expand Down
4 changes: 0 additions & 4 deletions tests/classiceditoruiview.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ describe( 'ClassicEditorUIView', () => {
expect( view.toolbar ).to.be.instanceof( ToolbarView );
} );

it( 'is given the right CSS class', () => {
expect( view.toolbar.element.classList.contains( 'ck-editor-toolbar' ) ).to.be.true;
} );

it( 'is given a locate object', () => {
expect( view.toolbar.locale ).to.equal( locale );
} );
Expand Down

0 comments on commit 6b4670c

Please sign in to comment.