Skip to content

Commit

Permalink
Merge branch 't/10152'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Mar 4, 2013
2 parents 29042f9 + 51b5bba commit 6bf40ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -21,6 +21,7 @@ CKEditor 4 Changelog
* [#9947](http://dev.ckeditor.com/ticket/9947): [Webkit] Editor overflows parent container in some edge cases.
* [#10105](http://dev.ckeditor.com/ticket/10105): Fixed: Broken sourcearea view when RTL language is set.
* [#10123](http://dev.ckeditor.com/ticket/10123): [Webkit] Fixed: Several dialogs have broken layout since latest Webkit.
* [#10152](http://dev.ckeditor.com/ticket/10152): Fixed: Invalid ARIA property used on menu items.

## CKEditor 4.0.1.1

Expand Down
4 changes: 1 addition & 3 deletions plugins/menu/plugin.js
Expand Up @@ -89,8 +89,7 @@ CKEDITOR.plugins.add( 'menu', {
' hidefocus="true"' +
' role="menuitem"' +
' aria-haspopup="{hasPopup}"' +
' aria-disabled="{disabled}"' +
' aria-pressed="{pressed}"';
' aria-disabled="{disabled}"';

// Some browsers don't cancel key events in the keydown but in the
// keypress.
Expand Down Expand Up @@ -449,7 +448,6 @@ CKEDITOR.plugins.add( 'menu', {
state: stateName,
hasPopup: hasSubMenu ? 'true' : 'false',
disabled: state == CKEDITOR.TRISTATE_DISABLED,
pressed: state == CKEDITOR.TRISTATE_ON,
title: this.label,
href: 'javascript:void(\'' + ( this.label || '' ).replace( "'" + '' ) + '\')',
hoverFn: menu._.itemOverFn,
Expand Down

0 comments on commit 6bf40ac

Please sign in to comment.