Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 't/10704'
  • Loading branch information
fredck committed Oct 8, 2013
2 parents 01b1e52 + 7751a1b commit 6f1232a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -16,6 +16,7 @@ Fixed Issues:
* [#10914](http://dev.ckeditor.com/ticket/10914): Plugins indentlist and indentblock included into building config.
* [#10812](http://dev.ckeditor.com/ticket/10812): Fixed range#createBookmark2 incorrectly normalizing offsets. This bug was causing many issues: [#10850](http://dev.ckeditor.com/ticket/10850), [#10847](http://dev.ckeditor.com/ticket/10847), [#10842](http://dev.ckeditor.com/ticket/10842).
* [#10951](http://dev.ckeditor.com/ticket/10951): Reviewed and optimized the focus handling on panels (combo, menu-buttons, color buttons and context menu) to enhance accessibility. Fixed [#10705](http://dev.ckeditor.com/ticket/10705), [#10706](http://dev.ckeditor.com/ticket/10706) and [#10707](http://dev.ckeditor.com/ticket/10707).
* [#10704](http://dev.ckeditor.com/ticket/10704): Fixed a JAWS issue with the Select Color dialog title not being announced.

## CKEditor 4.2.1

Expand Down
6 changes: 5 additions & 1 deletion plugins/colordialog/plugin.js
Expand Up @@ -7,7 +7,11 @@ CKEDITOR.plugins.colordialog = {
requires: 'dialog',
lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
init: function( editor ) {
editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) );
var cmd = new CKEDITOR.dialogCommand( 'colordialog' );
cmd.editorFocus = false;

editor.addCommand( 'colordialog', cmd );

CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' );

/**
Expand Down

0 comments on commit 6f1232a

Please sign in to comment.