Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 't/10510'
  • Loading branch information
oleq committed Jun 10, 2013
2 parents 8f4b94b + 65b61ed commit a9dc6c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -14,6 +14,7 @@ CKEditor 4 Changelog
* [#9945](http://dev.ckeditor.com/ticket/9945): [iOS] Scrolling not possible on iPad.
* [#10165](http://dev.ckeditor.com/ticket/10165): [IE] Access denied error if document.domain has been altered.
* [#10361](http://dev.ckeditor.com/ticket/10361): ARIA role="application" should not be used for floating panels.
* [#10510](http://dev.ckeditor.com/ticket/10510): Editors should have unique voice labels to differentiate between different instances.

## CKEditor 4.1.1

Expand Down
2 changes: 1 addition & 1 deletion core/creators/themedui.js
Expand Up @@ -324,7 +324,7 @@ CKEDITOR.replaceClass = 'ckeditor';
name: name,
langDir: editor.lang.dir,
langCode: editor.langCode,
voiceLabel: editor.lang.editor,
voiceLabel: [ editor.lang.editor, editor.name ].join( ', ' ),
topHtml: topHtml ? '<span id="' + editor.ui.spaceId( 'top' ) + '" class="cke_top cke_reset_all" role="presentation" style="height:auto">' + topHtml + '</span>' : '',
contentId: editor.ui.spaceId( 'contents' ),
bottomHtml: bottomHtml ? '<span id="' + editor.ui.spaceId( 'bottom' ) + '" class="cke_bottom cke_reset_all" role="presentation">' + bottomHtml + '</span>' : '',
Expand Down

0 comments on commit a9dc6c3

Please sign in to comment.