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

Commit

Permalink
Fix: Removed title from the editable element. Fixes #121.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Feb 2, 2017
1 parent 947eade commit 71fb3eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/editableui/inline/inlineeditableuiview.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export default class InlineEditableUIView extends EditableUIView {
attributes: {
role: 'textbox',
'aria-label': bind.to( 'name', getLabel ),
title: bind.to( 'name', getLabel ),
class: 'ck-editor__editable_inline'
}
} );
Expand Down
4 changes: 0 additions & 4 deletions tests/editableui/inline/inlineeditableuiview.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ describe( 'InlineEditableUIView', () => {
expect( view.element.getAttribute( 'aria-label' ) ).to.equal( ariaLabel );
} );

it( 'has proper title', () => {
expect( view.element.getAttribute( 'title' ) ).to.equal( ariaLabel );
} );

it( 'has proper class name', () => {
expect( view.element.classList.contains( 'ck-editor__editable' ) ).to.be.true;
expect( view.element.classList.contains( 'ck-editor__editable_inline' ) ).to.be.true;
Expand Down

0 comments on commit 71fb3eb

Please sign in to comment.