Skip to content

Commit

Permalink
Merge branch 't/10911' into major
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand committed Oct 28, 2013
2 parents fc83fe7 + 61b0378 commit 3c40e20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -5,6 +5,7 @@ CKEditor 4 Changelog

New Features:

* [#10911](http://dev.ckeditor.com/ticket/10911): Browser alt hotkeys will no longer be blocked while widget is focused.
* [#10856](http://dev.ckeditor.com/ticket/10856): Menu-buttons will now toggle their panels visibility when clicked multiple times. Language plugin fixes: added active language highlighting, added option to remove language.
* [#10822](http://dev.ckeditor.com/ticket/10822): Added styles system integration with non-editable elements (for example widgets) and their nested editables. Styles cannot change non-editable content and are applied in nested editable only if allowed by its type and content filter.
* [#10855](http://dev.ckeditor.com/ticket/10855): Change extension of emotes in BBCode sample from GIF to PNG.
Expand Down
4 changes: 2 additions & 2 deletions plugins/widget/plugin.js
Expand Up @@ -2414,8 +2414,8 @@
return; // Do not preventDefault.
}
// Pass chosen keystrokes to other plugins or default fake sel handlers.
// Pass all CTRL keystrokes.
else if ( keyCode in keystrokesNotBlockedByWidget || ( CKEDITOR.CTRL & keyCode ) )
// Pass all CTRL/ALT keystrokes.
else if ( keyCode in keystrokesNotBlockedByWidget || ( CKEDITOR.CTRL & keyCode ) || ( CKEDITOR.ALT & keyCode ) )
return;

return false;
Expand Down

0 comments on commit 3c40e20

Please sign in to comment.