Skip to content

Commit 6f379b2

Browse files
committed
Merge branch 't/10963'
2 parents cd791a6 + a6bb977 commit 6f379b2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Fixed Issues:
88
* [#10994](http://dev.ckeditor.com/ticket/10994): Fixed: loading external jQuery when opening adapter sample from file.
99
* [#10975](http://dev.ckeditor.com/ticket/10975): [IE] Fixed: Error thrown while opening color palette.
1010
* [#9929](http://dev.ckeditor.com/ticket/9929): [Blink/Webkit] Fixed: A non-breaking space is created once deleted a character and a regular space is typed.
11+
* [#10963](http://dev.ckeditor.com/ticket/10963): Fixed: JAWS issue with keyboard shortcut for Magicline.
1112

1213
## CKEditor 4.2.2
1314

plugins/magicline/plugin.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,10 +1695,10 @@
16951695
* // Changes keystroke to CTRL + ,
16961696
* CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + 188;
16971697
*
1698-
* @cfg {Number} [magicline_keystrokePrevious=CKEDITOR.CTRL + CKEDITOR.SHIFT + 219 (CTRL + SHIFT + [)]
1698+
* @cfg {Number} [magicline_keystrokePrevious=CKEDITOR.CTRL + CKEDITOR.SHIFT + 51 (CTRL + SHIFT + 3)]
16991699
* @member CKEDITOR.config
17001700
*/
1701-
CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.SHIFT + 219; // CTRL + SHIFT + [
1701+
CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.SHIFT + 51; // CTRL + SHIFT + 3
17021702

17031703
/**
17041704
* Defines default keystroke that access the closest unreachable focus space **after**
@@ -1707,10 +1707,10 @@ CKEDITOR.config.magicline_keystrokePrevious = CKEDITOR.CTRL + CKEDITOR.SHIFT + 2
17071707
* // Changes keystroke to CTRL + .
17081708
* CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + 190;
17091709
*
1710-
* @cfg {Number} [magicline_keystrokeNext=CKEDITOR.CTRL + CKEDITOR.SHIFT + 221 (CTRL + SHIFT + ])]
1710+
* @cfg {Number} [magicline_keystrokeNext=CKEDITOR.CTRL + CKEDITOR.SHIFT + 52 (CTRL + SHIFT + 4)]
17111711
* @member CKEDITOR.config
17121712
*/
1713-
CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + CKEDITOR.SHIFT + 221; // CTRL + SHIFT + ]
1713+
CKEDITOR.config.magicline_keystrokeNext = CKEDITOR.CTRL + CKEDITOR.SHIFT + 52; // CTRL + SHIFT + 4
17141714

17151715
/**
17161716
* Defines box color. The color may be adjusted to enhance readability.

0 commit comments

Comments
 (0)