Skip to content

Commit 6f1232a

Browse files
committed
Merge branch 't/10704'
2 parents 01b1e52 + 7751a1b commit 6f1232a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Fixed Issues:
1616
* [#10914](http://dev.ckeditor.com/ticket/10914): Plugins indentlist and indentblock included into building config.
1717
* [#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).
1818
* [#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).
19+
* [#10704](http://dev.ckeditor.com/ticket/10704): Fixed a JAWS issue with the Select Color dialog title not being announced.
1920

2021
## CKEditor 4.2.1
2122

plugins/colordialog/plugin.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ CKEDITOR.plugins.colordialog = {
77
requires: 'dialog',
88
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%
99
init: function( editor ) {
10-
editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) );
10+
var cmd = new CKEDITOR.dialogCommand( 'colordialog' );
11+
cmd.editorFocus = false;
12+
13+
editor.addCommand( 'colordialog', cmd );
14+
1115
CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' );
1216

1317
/**

0 commit comments

Comments
 (0)